• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

SpamAssassin is not scanning!?!

M

Moore

Guest
Hi,

now I'm running on Plesk 8.1.1 but I got a lot of spam. SpamAssassin is definetly running but no headers are added and so on.

For example I got the following entrie in maillog:

Jul 6 13:00:04 p15196084 spamd[8412]: spamd: got connection over /tmp/spamd_ful l.sock
Jul 6 13:00:04 p15196084 qmail: 1183719604.156697 starting delivery 459: msg 16 819096 to remote [email protected]1
Jul 6 13:00:04 p15196084 qmail: 1183719604.156928 status: local 1/10 remote 1/2 0
Jul 6 13:00:04 p15196084 qmail: 1183719604.157100 delivery 458: success: did_1+ 1+1/qp_10139/
Jul 6 13:00:04 p15196084 qmail: 1183719604.157392 status: local 0/10 remote 1/2 0
Jul 6 13:00:04 p15196084 qmail: 1183719604.157536 end msg 16819094
Jul 6 13:00:04 p15196084 spamd[8410]: prefork: child states: II

So what happend here?
 
I saw, that all entries in database psa.mail are set to false.

Can anyone post the table definition of psa.mail here? I have one but I think there is an error in it, because when I changed the setting of an mailbox in case of spamfilter yes/no - a message appears that it have been done but it doesn't.


CREATE TABLE `mail` (
`id` int(10) unsigned NOT NULL auto_increment,
`mail_name` varchar(245) character set ascii NOT NULL default '',
`postbox` enum('false','true') NOT NULL default 'false',
`account_id` int(10) unsigned NOT NULL default '0',
`redirect` enum('false','true') NOT NULL default 'false',
`redir_addr` varchar(255) character set utf8 default NULL,
`mail_group` enum('false','true') NOT NULL default 'false',
`autoresponder` enum('false','true') NOT NULL default 'false',
`spamfilter` enum('false','true') NOT NULL default 'false',
`virusfilter` enum('false','true') NOT NULL default 'false',
`mbox_quota` bigint(20) NOT NULL default '-1',
`dom_id` int(10) unsigned NOT NULL default '0',
`perm_id` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `dom_id` (`dom_id`,`mail_name`),
KEY `account_id` (`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1


Thank you
 
did you activate the spam filtering for each email? each time you create a mail address spam filter is set to off by default, same for anti-virus
 
Back
Top