
OK since no one knows the answer to my question, I will post what i did so that others with similar problem can also resolve it.
First of all, the solution was not to upgrade to 7.3.
There is in fact a limit to the amount of pop3 and SMTP connections in qmail.
These can be found at
/service/pop3/run for pop3 and
/var/qmail/control/concurrencyremote for SMTP.
In the
run file for pop3 connections, there is a line like:
-c ${CONCURRENCYREMOTE:-40} \I changed my to:
-c ${CONCURRENCYREMOTE:-200} \This increase the maximum concurrent connections for pop3 from 40 to 200.
After you changed it you have to restart pop3. This worked for me:
service pop3 restart For SMTP, edit the
/var/qmail/control/concurrencyremote file and add the number you want.
My was 20 and I changed it to 120
You have to restart qmail for the change to take affect. I could not for the life of me get qmail to restart, so I just restarted the server.
If you monitor your log files you can see the amount of current connections.
For pop3 look in
/var/log/pop3/current, you will see something like
tcpsvd: info: status 149/200This means that it is the 149th connection of 200 allowed.
And for SMTP in
/var/log/qmail/current look for
status: local 1/10 remote 71/120As you can see you can change the number of SMTP connections for both local and remote. Since my local connections is only 1/10 I had no need to change it.
This resolved my problem with POP3 connection timeouts and slow mail leaving the server.
As a matter of interest you can infact tell qmail-pop3 not to look for reverse DNS for local clients.
This is also done in
/service/pop3/run with the following option:
-l ${LOCALNAME:-0} \But this option seems to be a default in sme server.
Hope this helps someone with similar problem
Regards