X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=bin%2FannounceEmail.pl;h=906b22a70382ca448cee075974b238d7c20f2d40;hb=1f5737d7c0b97ac29c72a9f0cd883bd6211edec9;hp=96da9823b2df9700ba64bb597e0bcf055ca9b02f;hpb=f46862e41025e6d96509056229c28a90eb0ceb40;p=clearscm.git 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";