SF.net SVN: postfixadmin: [207] trunk/VIRTUAL_VACATION/vacation.pl
Brought to you by:
christian_boltz,
gingerdog
From: <Gin...@us...> - 2007-11-11 21:41:16
|
Revision: 207 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=207&view=rev Author: GingerDog Date: 2007-11-11 13:41:18 -0800 (Sun, 11 Nov 2007) Log Message: ----------- vacation.pl: updating spam check bit Modified Paths: -------------- trunk/VIRTUAL_VACATION/vacation.pl Modified: trunk/VIRTUAL_VACATION/vacation.pl =================================================================== --- trunk/VIRTUAL_VACATION/vacation.pl 2007-11-11 19:05:42 UTC (rev 206) +++ trunk/VIRTUAL_VACATION/vacation.pl 2007-11-11 21:41:18 UTC (rev 207) @@ -325,7 +325,7 @@ elsif (/^cc:\s+(.*)\n$/i) { $cc = $1; $lastheader = \$cc; } elsif (/^subject:\s+(.*)\n$/i) { $subject = $1; $lastheader = \$subject; } elsif (/^message-id:\s+(.*)\n$/i) { $messageid = $1; $lastheader = \$messageid; } - elsif (/^x-spam-flag:\s+yes$/i) { exit (0); } + elsif (/^x-spam-(flag|status):\s+yes/i) { exit (0); } elsif (/^precedence:\s+(bulk|list|junk)/i) { exit (0); } elsif (/^x-loop:\s+postfix\ admin\ virtual\ vacation/i) { exit (0); } else {$lastheader = "" ; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |