#!/bin/sh

if test -d ~/Maildir; then
	MAIL=~/Maildir
fi

# Do these work at all?
# (one for dovecot 1.x and the other for 0.99.x)
export MBOX_WRITE_LOCKS=fcntl
export MBOX_LOCKS=fcntl

# Avoid noise to stderr
#export USE_SYSLOG=1
#export SYSLOG_FACILITY=mail
export LOGFILE="$HOME/dovecot.log"
#export LOGFILE="/dev/null"

# Avoid LOGFILE growing endlessly
if [ -f "$LOGFILE" ] && [ "`ls -s "$LOGFILE" | awk '{print $1}'`" -gt 500 ]; then
	mv -f "$LOGFILE" "$LOGFILE.bak"
fi

exec /usr/lib/dovecot/imap