From: Andrew DeFaria Date: Sun, 11 Jul 2021 20:51:03 +0000 (-0700) Subject: Changed announceEmail.pl to remove things like order numbers X-Git-Url: https://defaria.com/gitweb/?a=commitdiff_plain;h=1f5737d7c0b97ac29c72a9f0cd883bd6211edec9;p=clearscm.git Changed announceEmail.pl to remove things like order numbers --- diff --git a/bin/announceEmail.pl b/bin/announceEmail.pl index 96da982..906b22a 100755 --- a/bin/announceEmail.pl +++ b/bin/announceEmail.pl @@ -125,6 +125,8 @@ sub notify($) { my $cmd = "notify-send -i $icon -t $timeout '$msg'"; Execute $cmd; + + return; } # notify sub interrupted { @@ -235,6 +237,10 @@ sub MonitorMail() { # Google Talk doesn't like # $subject =~ s/\#//g; + # Remove long strings of numbers like order numbers. They are uninteresting + my $longNumber = 5; + $subject =~ s/\s+\S*\d{$longNumber,}\S*\s*//g; + # Now speak it! my $logmsg = "From $from $subject";