PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : qmail



lehrling2
28.08.03, 10:04
hi,


ich habe einen redhat + qmail server.
er funktioniert eigentlich sehr gut. seit gestern hat aber 'inputs.relays.osirusoft.com' probleme. seit dem nimmt unser qmailserver nicht mehr alle mails an. gibt es eine möglichkeit, das der qmail wenn eine rbl - liste nicht ereichbar ist trotzdem die mails angenommen werden?

Danke

lehrling


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

exec /usr/local/bin/softlimit -m 2000000 \
/usr/local/bin/tcpserver -v -x /etc/tcp.smtp.cdb \
-c 20 -R -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
/usr/local/bin/rblsmtpd -b -C \
-r 'relays.ordb.org:Your message was rejected because the mail server you use is configured to allow OPEN RELAY - More detailed information regarding this problem is available from http://www.ordb.org/lookup/?%IP% - Please forward this error through to your email server support staff for easy resolution.' \
-r 'inputs.relays.osirusoft.com:Your message was rejected because the mail server you use is either configured to allow OPEN RELAY - More information regarding this problems is available at http://relays.osirusoft.com/cgi-bin/rbcheck.cgi?addr=%IP% - Please forward this error to your email server support staff for resolution.' \
-r 'proxies.relays.monkeys.com:Your message was rejected because the message was sent from an OPEN PROXY (%IP%) - More information regarding this problems is available at http://www.monkeys.com/anti-spam/filtering/proxies.html - Please forward this error to your email server support staff for resolution.' \
/var/qmail/bin/qmail-smtpd 2>&1
# for a internet gateway pc running fake ips / masqerading etc,
# you should turn off dns lookups by including the following additional tcpserver parameters
# -H -l s04.domain.com
~