From: gxharr2 [mailto:[EMAIL PROTECTED] > > I have added all the domains to esmtpaccpetmailfor and > hosteddomains, run the commands makeacceptmailfor and > makehosteddomains, and for each user I want, I�m running the > commands: > > su - <actual user> -c "mkdir /home/<actual user>/<username>" > su - <actual user> -c "/usr/local/courier/bin/maildirmake /home/<actual user>/<username>" > > userdb <[EMAIL PROTECTED]> set uid=<UID of actual user> > userdb <[EMAIL PROTECTED]> set gid=<GID of actual user> > userdb <[EMAIL PROTECTED]> set home=/home/<actual user>/<username> > userdbpw | userdb <[EMAIL PROTECTED]> set systempw
Courier defaults to looking for a maildir in "$HOME/Maildir". In your case, "/home/<actual user>/<username>/Maildir". You can override this with the MAIL attribute in userdb, but it is not usually a good idea. It can cause other problems later. Your best bet is to just create the directory that Courier expects to find. su - <actual user> -c "/usr/local/courier/bin/maildirmake /home/<actual user>/<username>/Maildir" Bowie ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ courier-users mailing list [EMAIL PROTECTED] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
