I have had a couple of clients report today the SA is no longer changing subject lines. Has something changed that would effect that?
WHM 9.4.0 cPanel 9.4.1-S65
I have had a couple of clients report today the SA is no longer changing subject lines. Has something changed that would effect that?
WHM 9.4.0 cPanel 9.4.1-S65
Originally Posted by evisions
yep busted. the new sa 3.0.0 uses different vars for the configs. I been fixing mine one at a time.. Nick we need you man!!!
Just keeping my "eye" on things....
R. Paul Mathews
RPMWS - diehard cPanel Nutcase
I was just about to post this same thing. SpamAssassin is no longer running at all on incoming emails. What is the fix?
-Walter Jeffries
BlackLightning, 252 Riddle Pond Rd, WTopsham, VT 05086 USA 1-800-252-2599
BLToner.com --- 17 Colors of Iron-on Laser Transfer Toners
HollyGraphicArt.com --- Custom Pencil Drawn Portraits
I made a simple perl script to find all of the user_prefs files for spamassassin users on the server and replace the subject_tag with rewrite_header Subject. Here is the code:
Just save that to a file on the server, chmod +x and run the script.Code:#!/usr/bin/perl @files = `find /home/*/.spamassassin -name user_prefs -print`; foreach(@files) { chomp($_); system("perl -pi -e 's/subject_tag/rewrite_header Subject/g' $_"); }
Thanks sparek
This fix is not working for me. Also, virus messages are no longer rewritten with [Virus] either. This is causing a severe problem in the handling of spam messages on my server.
Colin Snover
Is there any update to this? Or are Cpanel still working/wondering on it?
At our web host they've turned off the SpamAssassin auto-update because of this problem. It was too much of a hassle that every time the auto-update ran it turned off SpamAssassin and they had to go through and manually turn it back on. So now we have SpamAssassin 3 running fine - just no auto-updates until this gets straightened out. They feill this may be the best solution for a while.
The alternative I see is a cron job that turns it back on periodically or ideally is triggered by the auto-update. Perhaps it could be triggered by detecting that SpamAssassin is no longer marking messages - e.g., ever hour it would do a test message, see if SpamAssin marks it and if not then turn on SpamAssassin.
-Walter Jeffries
BlackLightning, 252 Riddle Pond Rd, WTopsham, VT 05086 USA 1-800-252-2599
BLToner.com --- 17 Colors of Iron-on Laser Transfer Toners
HollyGraphicArt.com --- Custom Pencil Drawn Portraits