SF.net SVN: postfixadmin:[1444] trunk/VIRTUAL_VACATION/vacation.pl
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2013-03-14 23:18:00
|
Revision: 1444 http://sourceforge.net/p/postfixadmin/code/1444 Author: christian_boltz Date: 2013-03-14 23:17:57 +0000 (Thu, 14 Mar 2013) Log Message: ----------- vacation.pl: - fix typo in variable name Modified Paths: -------------- trunk/VIRTUAL_VACATION/vacation.pl Modified: trunk/VIRTUAL_VACATION/vacation.pl =================================================================== --- trunk/VIRTUAL_VACATION/vacation.pl 2013-03-12 20:08:57 UTC (rev 1443) +++ trunk/VIRTUAL_VACATION/vacation.pl 2013-03-14 23:17:57 UTC (rev 1444) @@ -596,7 +596,7 @@ if($address =~ /^(noreply|postmaster|mailer\-daemon|listserv|majordomo|owner\-|request\-|bounces\-)/i || $address =~ /\-(owner|request|bounces)\@/i || - ($custom_noreply_pattern == 1 && $adress =~ /^.*($noreply_pattern).*/i) ) { + ($custom_noreply_pattern == 1 && $address =~ /^.*($noreply_pattern).*/i) ) { $logger->debug("sender $address contains $1 - will not send vacation message"); exit(0); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |