On 2007.01.21, at 22:25, Eric Shubes wrote:
That should make it a little easier, but I'm trying to keep qtp-
newmodel in
such a state that it can be used on new installations too (as it is
now, as
long as djbdns isn't used!).
In that case ok, but i found again one anoying error in run script
in /var/qmail/supervise/imap4/run
after upgrade i have
---
/usr/bin/tcpserver -v -R -H -l $HOSTNAME 0 143 \
---
and if we dont modify this line IMAP4 will server only 40 connections
and (/var/qmail/control/concurrencyincoming and concurrencyremote) is
actualy usless, because only SMTP run script actualy read config
information.
Based on var/qmail/supervise/smtp/run i modify imap4 run script to
also read /var/qmail/control/concurrencyincoming
----
MAXIMAP4=`cat /var/qmail/control/concurrencyincoming`
/usr/bin/tcpserver -c "$MAXIMAP4" -v -R -H -l $HOSTNAME 0 143 \
---
it's necessary not to put "-c" at the end because will not work
P.S this problem is also in IMAP4-SSL and POP3-SSL, POP3 is fixed on
200 connections..