From 2091c5066222bad7a08c921d276bba7615d5339b Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Thu, 14 Mar 2013 23:17:57 +0000 Subject: [PATCH] vacation.pl: - fix typo in variable name git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1444 a1433add-5e2c-0410-b055-b7f2511e0802 --- VIRTUAL_VACATION/vacation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VIRTUAL_VACATION/vacation.pl b/VIRTUAL_VACATION/vacation.pl index a869cde6..2741ad4d 100644 --- a/VIRTUAL_VACATION/vacation.pl +++ b/VIRTUAL_VACATION/vacation.pl @@ -596,7 +596,7 @@ sub check_and_clean_from_address { 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); }