Difference between revisions of "Procmail Filtering"

From XMission Wiki
Jump to: navigation, search
(new page)
 
m
Line 1: Line 1:
 +
{{archived}}
 
<pre>
 
<pre>
 
# Delete messages with scores high enough to be marked as spam.  
 
# Delete messages with scores high enough to be marked as spam.  
Line 19: Line 20:
  
 
Needs a check on any systax that may have been broken during search and replace
 
Needs a check on any systax that may have been broken during search and replace
 +
 +
 +
{{footer}}
 +
[[Category:XMission Email Archives|Procmail Filtering]]

Revision as of 22:20, 18 March 2008

Archives.png

# Delete messages with scores high enough to be marked as spam. 
:0
* X-Spam-Flag: Yes
/dev/null

# Sort spam with SpamAssassin scores greater than or equal to 5
:0:
* ^X-Spam-Level: \*\*\*\*\**
spamassassin

# Delete spam with the SpamAssassin Spam-Status header at anything over 5
:0
* ^X-Spam-Status: .*, score=([5-9]\.|[0-9][0-9])
/dev/null

Needs a check on any systax that may have been broken during search and replace