SpamAssassin 3.2.4 available

the above logs doesn't show anything if any of the emails were scanned for Spam.

It looks like someone is trying to use your server to send out emails, but is getting rejected because of authentication failure.
 
the above logs doesn't show anything if any of the emails were scanned for Spam.

It looks like someone is trying to use your server to send out emails, but is getting rejected because of authentication failure.



thanks , so how to setting from scanned for Spam, thanks, and also how to reject some one trying to use my server to send out emails
 
Last edited:
Upgrade Success - Failed Rule

After upgrading to 3.2.4 and all working but gettign this error in my message log:

spamd: rules: failed to run __DC_IMG_TEXT_RATIO test, skipping:
Jan 24 11:39:12 sp1 spamd[2172]: (Can't locate object method "image_to_text_ratio" via package "Mail::SpamAssassin::perMsgStatus" at (eval 715) line 3469.

Any ideas?

Jon
 
you must install the missed module using cpan:
perl -MCPAN -e shell

install Mail::SpamAssassin::perMsgStatus
 
i run that commands and say me this :
[root@ns1 scripts]# ./spam.sh
./spam.sh: line 84: /usr/bin/perl: No such file or directory
./spam.sh: line 89: [: -gt: unary operator expected
./spam.sh: line 92: [: -gt: unary operator expected
./spam.sh: line 95: [: -gt: unary operator expected
Your perl version is . You require at least perl 5.6.1 for Mail-SpamAssassin-3.2.4

how can i solve this?
special thanks
bye
 
Last edited:
That depends on your OS Distribution. It should have a package for Perl.

Jeff
 
Works a treat.

I did the following:

Code:
cd /usr/local/directadmin/scripts
perl -pi -e 's/VERSION=3.2.3/VERSION=3.2.4/' spam.sh
./spam.sh
# The next command will restart the spam process.
# No need to run /usr/bin/spamd -d -c -m 5 manually
service exim restart

Sed could have been used as well :)
Code:
sed -i 's/VERSION=3.2.3/VERSION=3.2.4/' spam.sh
 
Back
Top