Difference between revisions of "Spamassassin"
From Atomicorp Wiki
Line 1: | Line 1: | ||
Force spamassassin to scan messages from localhost, when using qmail-scanner: | Force spamassassin to scan messages from localhost, when using qmail-scanner: | ||
− | service smtp | + | |
− | { | + | service smtp |
+ | { | ||
socket_type = stream | socket_type = stream | ||
protocol = tcp | protocol = tcp | ||
Line 11: | Line 12: | ||
server = /var/qmail/bin/tcp-env | server = /var/qmail/bin/tcp-env | ||
server_args = /usr/sbin/rblsmtpd -r sbl-xbl.spamhaus.org /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true | server_args = /usr/sbin/rblsmtpd -r sbl-xbl.spamhaus.org /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true | ||
− | } | + | } |
Revision as of 16:50, 21 July 2007
Force spamassassin to scan messages from localhost, when using qmail-scanner:
service smtp { socket_type = stream protocol = tcp wait = no disable = no user = root instances = UNLIMITED env = QS_SPAMASSASSIN="on" server = /var/qmail/bin/tcp-env server_args = /usr/sbin/rblsmtpd -r sbl-xbl.spamhaus.org /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true }
Mysql settings for whitelisting:
this doesnt work INSERT INTO userpref (username,preference,value) VALUES ('%tsginc.com','whitelist_from','developmentex.com'); INSERT INTO userpref (username,preference,value) VALUES ('%tsginc.com','whitelist_from','@developmentex.com'); INSERT INTO userpref (username,preference,value) VALUES ('%tsginc.com','whitelist_from','%@developmentex.com');
This works INSERT INTO userpref (username,preference,value) VALUES ('%tsginc.com','whitelist_from','*developmentex.com'); INSERT INTO userpref (username,preference,value) VALUES ('%tsginc.com','whitelist_from','*@developmentex.com');