From: Andrew DeFaria Date: Sun, 11 Jul 2021 20:49:13 +0000 (-0700) Subject: Changed announceEmail.pl to strip out things like order numbers X-Git-Url: https://defaria.com/gitweb/?a=commitdiff_plain;h=338c4f27d2fd517aa63544459399aef9b28438be;hp=f46862e41025e6d96509056229c28a90eb0ceb40;p=clearscm.git Changed announceEmail.pl to strip out 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";