Hello,
 
I successfully installed qmailscanner on my freebsd 5.0 system with Qmail, vpopmail and clamav. But I have a problem when users are sending mails with attachments. They are sending the email and at the end there is an error. But the email is successfully received and sent to the receiver. Because of the error the users MUA is then repeating the message again and again. And the receiver gets this email every time. The qmail-queue.log says everything ok. What is wrong?
 
 
My smtp run file:
 
#!/bin/sh
QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl" export QMAILQUEUE
exec 2>&1 \
envdir ./env \
sh -c '
    case "$REMOTENAME" in h) H=;; p) H=p;; *) H=H;; esac
    case "$REMOTEINFO" in r) R=;; [0-9]*) R="t$REMOTEINFO";; *) R=R;; esac
    exec \
    envuidgid qmaild \
    softlimit ${DATALIMIT+"-d$DATALIMIT"} \
    /usr/local/bin/tcpserver \
        -vDU"$H$R" \
        ${LOCALNAME+"-l$LOCALNAME"} \
        ${BACKLOG+"-b$BACKLOG"} \
        ${CONCURRENCY+"-c$CONCURRENCY"} \
        -xtcp.cdb \
        -- "${IP-0}" "${PORT-25}" \
    /var/qmail/bin/qmail-smtpd
'
 
DATALIMIT is set to 15000000
 
timeoutconnect: (Default.) SMTP client connection timeout is 60 seconds.
 
timeoutremote: (Default.) SMTP client data timeout is 1200 seconds.
 
timeoutsmtpd: (Default.) SMTP server data timeout is 1200 seconds.
 
Thanks in advance,
Joachim

Reply via email to