|
|
#64 (permalink) | |
|
Surpassing Dutch
Super #1
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,370 posts
Gave thanks: 172
Thanked 40 times
|
Looks like I've got it working
![]() Quote:
__________________
sh98
|
|
|
|
|
|
|
#66 (permalink) |
|
minor deity
Super #1
Joined in Apr 2004
Lives in Georgia
Hosted on XEON
7,331 posts
Gave thanks: 23
Thanked 93 times
|
Ahh - Look at that!
Code:
Learning SPAM Processing /home/stegenga/mail/stegenga.net/john/SPAM Learned tokens from 19 message(s) (397 message(s) examined) Processing /home/stegenga/mail/stegenga.net/beth/INBOX/SPAM Learned tokens from 0 message(s) (1 message(s) examined) Processing /home/stegenga/mail/stegenga.net/beth/SPAM Learned tokens from 10 message(s) (92 message(s) examined) Processing /home/stegenga/mail/stegenga.net/mailtrap/SPAM Learned tokens from 75 message(s) (108 message(s) examined) Processing /home/stegenga/mail/host-my-site.com/sales/SPAM Learned tokens from 0 message(s) (6 message(s) examined) Processing /home/stegenga/mail/emerging-tech.stegenga.net/john/SPAM Learned tokens from 0 message(s) (2 message(s) examined) Learning HAM Processing /home/stegenga/mail/stegenga.net/john/HAM Learned tokens from 28 message(s) (32 message(s) examined) Processing /home/stegenga/mail/stegenga.net/beth/HAM Learned tokens from 9 message(s) (16 message(s) examined) Processing /home/stegenga/mail/stegenga.net/mailtrap/HAM Learned tokens from 0 message(s) (0 message(s) examined) Processing /home/stegenga/mail/host-my-site.com/sales/HAM Learned tokens from 0 message(s) (0 message(s) examined) Done
__________________
Proud to be a Surmunity Mod! XEON Make a fundamental difference! My Sites: Curious about Brewing Beer? Join the community! >>>>> Some Change is GOOD! Keep your paycheck! Support the Fair Tax Get into an Art museum Victorian London It's your brain -ON WEB - mybrainhost.com (under development) What SHOULD Government do? Much Less than it Does! |
|
|
|
|
|
#67 (permalink) |
|
Surpassing Dutch
Super #1
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,370 posts
Gave thanks: 172
Thanked 40 times
|
I think I've done something wrong somehow. I keep getting the cronmail, so that is working
, but shouldn't the post stay in the HAM folder? Also, the subject isn't rewritten with the ***POSSIBLE SPAM*** thing I've set.
__________________
sh98
|
|
|
|
|
|
#68 (permalink) | |
|
Surpassing Dutch
Super #1
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,370 posts
Gave thanks: 172
Thanked 40 times
|
Edit doesn't seem to work for me
![]() Quote:
__________________
sh98
|
|
|
|
|
|
|
#69 (permalink) |
|
minor deity
Super #1
Joined in Apr 2004
Lives in Georgia
Hosted on XEON
7,331 posts
Gave thanks: 23
Thanked 93 times
|
so you have 2 different problems?
1a - No, messages don't stay in the HAM folder. Because ham is good email, it's really easy to put all of today's email into HAM should you need to re-train. We keep SPAM because you need 500 messages just to activate the bayes filter. 1b - Make sure 'rewrite subject' is enabled. You may have entered what you want it re-written to without turning it on. 2 - if you want to block everything from bravenet you simply do: *.*.bravenet.* that would get any server / subdomain / mail address. Cowboy may wander through here and correct me if I'm wrong.
__________________
Proud to be a Surmunity Mod! XEON Make a fundamental difference! My Sites: Curious about Brewing Beer? Join the community! >>>>> Some Change is GOOD! Keep your paycheck! Support the Fair Tax Get into an Art museum Victorian London It's your brain -ON WEB - mybrainhost.com (under development) What SHOULD Government do? Much Less than it Does! |
|
|
|
|
|
#71 (permalink) | |
|
Surpass Fan
Excelling Contributor
Joined in Nov 2005
Lives in Colorado
Hosted on DEDI
934 posts
Gave thanks: 2
Thanked 94 times
|
Quote:
Code:
rewrite_header subject **MOGELIJK SPAM** # rewrite_header is set by entering a value only, # it does not accept a true/false 1/0 # you need to specify which header to rewrite, # ie, subject (you can rewrite to, from, or subject header) delete "subject_tag 1" not used in SA v3 blacklist_from *.bravenet.com # --- *. forget the . use just * # (*=everything) --- *bravenet* also gets .net, .org, .etc # But, only by adding -100 to the score # When using cPanel filtering for SpamAssassin, it has to be the last filter # in the list or subsequent filters could also process the e-mail. I will share with you my user_pref file which currently is yielding zero spam. I DO use a filter file later to allow my whitelist deliveries, redirection of matching criteria, and then blackholes all marked SPAM and non-spam blacklists. Spamassassin is not the fool-proof solution to white and black lists, that is done in the filter file. Code:
required_score 4 rewrite_header subject **_HITS_** use_bayes 0 score HTML_FONT_SIZE_TINY 4.0 score BEST_PORN 4.0 score HTML_IMAGE_ONLY_04 4 score HTML_IMAGE_ONLY_08 4 score HTML_IMAGE_ONLY_12 4 score HTML_IMAGE_ONLY_16 4 score HTML_IMAGE_ONLY_20 4 score HTML_IMAGE_ONLY_24 4 score HTML_IMAGE_ONLY_28 4 score HTML_IMAGE_ONLY_32 4 score HTML_TINY_FONT 4.0 score MALE_ENHANCE 4.0 score PORN_16 4.0 score URIBL_JP_SURBL 4.0 score HTML_FONT_TINY 4.0 score STOCK_ALERT 4.0 score MIME_BASE64_TEXT 4.0 score US_DOLLARS_3 4.0 score URIBL_SBL 4 score RCVD_IN_BL_SPAMCOP_NET 4 score STRONG_BUY 4 score DRUGS_ERECTILE 4 score FUZZY_REFINANCE 4 score HTML_10_20 4 score HTML_MIME_NO_HTML_TAG 4 score SUSPICIOUS_RECIPS 4 score RCVD_IN_SORBS_DUL 4 score RCVD_IN_NJABL_PROXY 4 score URIBL_OB_SURBL 4 score UPPERCASE_25_50 3.5 score UNPARSEABLE_RELAY 4 score HTML_FONT_FACE_BAD 3.5
__________________
Where would you be if you were at the highest court in the land (US)? |
|
|
|
|