aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/handlemail2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/handlemail b/bin/handlemail
index 38f5cf41d..ade5d42d3 100755
--- a/bin/handlemail
+++ b/bin/handlemail
@@ -130,7 +130,7 @@ sub is_out_of_office {
my $precedence = $head->get("Precedence") || '';
return 1 if $precedence =~ /auto_reply/;
my $subject = $head->get("Subject");
- return 1 if $subject =~ /Auto(matic|mated)?[ -_]?(reply|response|responder)|Thank[ _]you[ _]for[ _](your[ _]email|contacting)|Out of (the )?Office|away from the office|This office is closed until|^Re: (Problem Report|New updates)|^Auto: |^E-Mail Response$|^Message Received:|have received your email|Acknowledgement of your email|away from my desk/i;
+ return 1 if $subject =~ /Auto(matic|mated)?[ -_]?(reply|response|responder)|Thank[ _]you[ _]for[ _](your[ _]email|contacting)|Out of (the )?Office|away from the office|This office is closed until|^Re: (Problem Report|New updates)|^Auto: |^E-Mail Response$|^Message Received:|have received your email|Acknowledgement of your email|away from my desk|We got your email/i;
return 0;
}