On Tue, Sep 02, 2003 at 10:13:14PM +0200, Claudio Jeker wrote:
> On Tue, Sep 02, 2003 at 11:09:02AM -0500, Brian Clark wrote:
> > Why would you use the /var/qmail/bin/auth_imap authmodule instead of
> > Courier's own auth_ldap or auth_pam modules?
> >
> Couriers auth tool are not cluster capable nor do they homedir/maildir
> autocreation. auth_imap does that all.
> I also think it is much simpler to setup.
> imaplogin auth_imap imapd and your done no config files and huge shell
> scripts to edit but thats my 5 swiss cents.
I recently set up courier-imap without all their junk - I really
should update lwql for that.
run scripts are like that:
imap:
#!/bin/sh
tcpserver -c 100 -l imap.bsws.de -v -R -H 80.86.183.53 143 \
/usr/local/sbin/imaplogin \
/var/qmail/smtp.bsws.de/bin/auth_imap \
/var/qmail/smtp.bsws.de/bin/pbsadd \
/usr/local/bin/imapd Maildir 2>&1
imaps: (tcpserver w/ ssl patch)
#!/bin/sh
tcpserver -c 100 -l imap.bsws.de -s -v -R -H 80.86.183.53 993 \
/usr/local/sbin/imaplogin \
/var/qmail/smtp.bsws.de/bin/auth_imap \
/var/qmail/smtp.bsws.de/bin/pbsadd \
/usr/local/bin/imapd Maildir 2>&1
the ssl patch for tcpserver kicks ass ;-)
--
http://2suck.net/hhwl.html - http://www.bsws.de/
Unix is very simple, but it takes a genius to understand the simplicity.
(Dennis Ritchie)