[Postfixadmin-devel] Question re: vacation.pl
Brought to you by:
christian_boltz,
gingerdog
From: Tanstaafl <tan...@li...> - 2013-01-05 16:15:27
|
Hope someone can answer this... In the 'Take headers apart' section, where all of the stuff goes to determine what NOT to send auto-replies to, there is stuff like: elsif (/^Reply\-to:\s*(.*)\s*\n$/i) { $replyto = $1; $lastheader = \$replyto; } However, in earlier version of vacation.pl, it was: elsif (/^reply-to:\s*(.*)\s*\n$/i) { $replyto = $1; $lastheader = \$replyto; } Aside from escaping the '-', note that the 'R' is now capitalized 'Reply\-to:', whereas before it was not... Are these tests case sensitive? Thanks, Charles |