tomclegg.net |
maildirpop3d + dovecot + regular users Posted January 23, 2006 You can make dovecot and maildircheckpw-dovecot offer user-controlled mailboxes and regular mailboxes at the same time. This is a horrible solution. It is not recommended. In default_mail_env = maildir:%h/Maildir Restart dovecot. /usr/local/etc/rc.d/dovecot.sh restart Make sure checkpassword is in /usr/bin or /bin. which checkpassword && ln -s `which checkpassword` /bin Periodically, make sure there is a symlink from For example, create for d in /home/* do for md in "$d"/Maildir-* do if [ -e "$md" ] then [ -e "$md/Maildir" ] || ln -s . "$md/Maildir" fi done done ...and add this to 0 * * * * root sh /usr/local/sbin/hack-maildirs |