Archive for the qmail Category

QMail recipies at maurus.net

Friday, February 15th, 2008 | Permalink

Jonas from the maurus.net weblog is writing down some qmail recipies. The first entry is about “Forwarding mail and changing the envelope sender”.
I guess for everyone who is interested in qmail and working with it, there will be some helpful insights.

compile error on qmail and other djb products like ucspi-tcp, daemontools, djbdns, tinydns

Wednesday, August 1st, 2007 | Permalink

since the new gcc version is out, djb software has its problems with compiling. also netqmail has problems.
something with errno … bla…bla…bla…

there is a simple fix for that.
just go to the sourcecode and find the file conf-cc.
edit it and add the following code :
cc -O2 -include /usr/include/errno.h

now it should work.

UPDATE: little performance tuning for qmail + vpopmail

Thursday, July 19th, 2007 | Permalink

after looking around, i found this entry in life with qmail. after changing all things descriped there, my qmail is running and running and breaking records. 🙂

in addition to that, you should look here at tcpserver config

little performance tuning for qmail + vpopmail

Thursday, May 10th, 2007 | Permalink

i use qmail in combination with vpopmail from inter7 on my servers.

the most start scripts for qmail use tcpserver and tcpserver uses recursive dns for every request.
so if there is a lot of traffic or spam or whatever, tcpserver sometime takes to long to resolv these ip addresses and no more connections are able to be opened in that time.
the resultion is to set the params like this:

tcpserver -H

the -H means don’t resolve the ip.

simscan with clamd & spamassassin

Sunday, April 22nd, 2007 | Permalink

i use simscan to scan every mail on one of my mailservers.
i don’t often restart my servers, so sometime i get the following error in my smtp log file.

2007-04-20 12:11:13.004232500 connect(): No such file or directory

most of the time this happens when clamd or spamassassin is not started. normally this should happen on the restart.

in my case
clamd &
solved the issue.