Re: [toaster] just migrated from courier to dovecot

2008-06-15 Thread Bill Shupp

On Jun 13, 2008, at 5:48 AM, Alessio Cecchi wrote:


Il Friday 13 June 2008 11:35:52 Maciej Sołtysiak ha scritto:

Hi,

just wanted to say that in my setup dovecot is visibly faster than
courier-imap. (I'm using dovecot-1.1.rc9)

I'm running courier on port 143 and dovecot on 10143 and I've been
changing the port in roundcube webmail config
to see which is faster and dovecot really is.


Also for me dovecot is really much faster than courier.



Seems to be snappier to me as well.  I've got it running just fine  
with cdb and quota support enabled.  While large mailboxes (and I've  
got a lot) still take some time to initially load, searches are much  
faster than courier as well.


Anyone have daemontools scripts together already?

Regards,

Bill



[toaster] binding IP

2008-06-15 Thread Qmail List
Hi,

I have 2 IPs for the web and mail server which is on the same box. I would
like apache to attach to the 1st IP and qmail on the 2nd. How can I make
qmail to bind to the 2nd IP?

Regards






Re: [toaster] binding IP

2008-06-15 Thread Rick Widmer



Qmail List wrote:

Hi,

I have 2 IPs for the web and mail server which is on the same box. I would
like apache to attach to the 1st IP and qmail on the 2nd. How can I make
qmail to bind to the 2nd IP?



Here is my run file for qmail-smtpd.  Notice the term 
'mail.developersdesk.com' in the parameters for tcpserver.  The value in 
a normal installation is 0 which says all ip addresses the server 
listens to.  If you prefer, you can also use the IP address here.



Rick


#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`

MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
exec /usr/local/bin/softlimit -m 1000 \
/usr/local/bin/tcpserver -v -H -R -l 0 \
-x /mail/etc/tcp.smtp.cdb -c $MAXSMTPD \
-u $QMAILDUID -g $NOFILESGID mail.developersdesk.com smtp \
/usr/local/bin/rblsmtpd \
-r safe.dnsbl.sorbs.net \
-r bl.spamcop.net \
/var/qmail/bin/qmail-smtpd \
/mail/bin/vchkpw /bin/true 21
~


RE: [toaster] binding IP

2008-06-15 Thread Qmail List
 I have 2 IPs for the web and mail server which is on the same box. I
would
 like apache to attach to the 1st IP and qmail on the 2nd. How can I make
 qmail to bind to the 2nd IP?


 Here is my run file for qmail-smtpd.  Notice the term 

snip

 -u $QMAILDUID -g $NOFILESGID mail.developersdesk.com smtp \

Thanks. Do I change the hostname in qmail-pop3d run file too?

/var/qmail/bin/qmail-popup `hostname` \

regards