On Sun, 23 May 2004, Alejandro Mery wrote:
>hi, are symlinks of IMAPdir/INBOX auto-created or they have to be
>created by hand?
>using Mailbox { depot="IMAPdir", path="IMAPdir" } i get them as real
>maildirs :-(

Yup, you should rather insert a script before bincimapd which makes that
symlink for you. For instance (untested)

#!/bin/sh
if [ ! -e ./Maildir/INBOX ]; then
    (cd Maildir && ln -s . INBOX)
fi
exec $@

Andy :-)

--
Andreas Aardal Hanssen   | http://www.andreas.hanssen.name/gpg
Author of Binc IMAP      |  "It is better not to do something
http://www.bincimap.org/ |        than to do it poorly."

Reply via email to