User Tools

Site Tools


spamassassin:stopping_spam

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
spamassassin:stopping_spam [2016/11/01 23:56] peterspamassassin:stopping_spam [2019/12/04 21:15] (current) – removed peter
Line 1: Line 1:
-====== SpamAssassin - Stopping Spam ====== 
  
-===== Mail::Audit Install and Patching ===== 
- 
- 
-<code perl> 
-#!/usr/bin/perl 
-# This is an small wrapper script around Mail::SpamAssassin for the use 
-# with the exim MTA. 
-# Modified to eliminate the buggy Mail::Audit use. 
-# This modification also eliminates the need to re-submit the message 
-# to Exim for delivery to the mail spool. Requires localuser director 
-# to use the spamcheck transport so it knows where to append to. 
-# It is released under the Terms of GNU General Public License (GPL) so 
-# use at your own risk! 
- 
-use Mail::SpamAssassin; 
-use Mail::SpamAssassin::NoMailAudit; 
- 
-$savespam = 1;                      #1/0 should spam be saved centrally? 
-$spamfile = '/var/mail/spam';       #If you said 1 above - where to put 
-                                    #that nasty spam? Be sure this mailbox 
-                                    #is writable by the user who runs this 
-                                    #script (e.g. mail) 
-#These are given as command line arguments by exim: 
-$sender = shift(@ARGV); 
-$sender = '<>' if $sender eq ''; 
-$recpt = ''; 
-while (@ARGV){ 
-  $recpt = $recpt.' '.shift(@ARGV); 
-} 
- 
-####### Main script ########################################################### 
- 
-$mail = Mail::SpamAssassin::NoMailAudit->new(); 
- 
-$spamtest = Mail::SpamAssassin->new(); 
-$status = $spamtest->check ($mail); 
- 
-#Add the X-Spam Headers: 
-$status->rewrite_mail (); 
-#Auto Report to Vipul's Razor: 
-$status->handle_auto_report (); 
- 
-if ($status->is_spam ()) { 
-  if ($savespam) { 
-    $mail->accept($spamfile); # Deliver to spamfile 
-  } else { 
-    $mail->accept();          # Deliver to user's mailbox 
-  } 
-} else { 
-  $mail->accept();            # to default incoming mailbox 
-} 
-</code> 
- 
- 
- 
-===== References ===== 
- 
-http://web.archive.org/web/20041116091629/http://bogmog.sourceforge.net/document_show.php3?doc_id=28 
- 
-http://web.archive.org/web/20041025034458/http://www.sbicomputing.com/scripts/spamcheck.pl 
spamassassin/stopping_spam.1478044582.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki