X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=bin%2FannounceEmail.pl;h=0fae494d79bb83da766e74390ea6b50cb1464e4b;hb=679a6307d28f6495322fc79bf4fc188571b74192;hp=3cbc12ebc0db06bf0144c46b42c1751c4f2862e7;hpb=2618169d02d86252cd3dec6f1c3aebe813a6b2f0;p=clearscm.git diff --git a/bin/announceEmail.pl b/bin/announceEmail.pl index 3cbc12e..0fae494 100755 --- a/bin/announceEmail.pl +++ b/bin/announceEmail.pl @@ -29,7 +29,7 @@ $Date: 2019/04/04 13:40:10 $ =back -=hade1 SYNOPSIS +=head1 SYNOPSIS Usage: announceEmail.pl [-usa|ge] [-h|elp] [-v|erbose] [-de|bug] [-da|emon] [-use|rname ] [-p|assword ] @@ -91,6 +91,28 @@ my %opts = ( sleep => $defaultSleeptime, ); +sub interrupted { + if (get_debug) { + $log->msg("Turning off debugging"); + set_debug 0; + } else { + $log->msg("Turning on debugging"); + set_debug 1; + } # if + + return; +} # interrupted + +$SIG{USR1} = \&interrupted; + +sub debugit($) { + my ($msg) = @_; + + $log->msg($msg) if get_debug; + + return; +} # logit + sub unseenMsgs() { my %unseenMsgs; @@ -102,20 +124,20 @@ sub unseenMsgs() { } # unseenMsgs sub Connect2IMAP() { - $log->msg("Connecting to $opts{imap} as $opts{username}"); + $log->msg("Connecting to $opts{imap} as $opts{username}...", 1); $IMAP = Net::IMAP::Simple->new($opts{imap}) || - error("Unable to connect to IMAP server $opts{imap}: " . $Net::IMAP::Simple::errstr, 1); + $log->err("Unable to connect to IMAP server $opts{imap}: " . $Net::IMAP::Simple::errstr, 1); - $log->msg("Connected"); + $log->msg(' connected'); - $log->msg("Logging onto $opts{imap} as $opts{username}"); + $log->msg("Logging onto $opts{imap} as $opts{username}...", 1); unless ($IMAP->login($opts{username}, $opts{password})) { $log->err("Login to $opts{imap} as $opts{username} failed: " . $IMAP->errstr, 1); } # unless - $log->msg("Logged on"); + $log->msg(' logged on'); # Focus on INBOX only $IMAP->select('INBOX'); @@ -123,15 +145,25 @@ sub Connect2IMAP() { # Setup %unseen to have each unseen message index set to 0 meaning not read # aloud yet %unseen = unseenMsgs; + + return; } # Connect2IMAP sub MonitorMail() { - $log->msg("Monitoring email"); + my $msg = "Now monitoring email for $opts{username}\@$opts{imap}"; + + $log->msg($msg); + + my $cmd = "/usr/local/bin/gt \"$msg\""; + + my ($status, @output) = Execute $cmd; while () { # First close and reselect the INBOX to get its current status + debugit "Reconnecting to INBOX"; $IMAP->close; - $IMAP->select('INBOX'); + $IMAP->select('INBOX') + or $log->err("Unable to select INBOX - ". $IMAP->errstr(), 1); # Go through all of the unseen messages and add them to %unseen if they were # not there already from a prior run and read @@ -149,15 +181,21 @@ sub MonitorMail() { } # if } # for + debugit "Processing newUnseen"; for (keys %newUnseen) { next if $unseen{$_}; - my $email = Email::Simple->new(join '', @{$IMAP->top($_)}); + my @msglines = $IMAP->top($_); + + # What happens at INBOX 0? Does top return empty array? + $log->err("Unable to get top for $_ - " . $IMAP->errstr(), 1) unless @msglines; + + my $email = Email::Simple->new(join '', @msglines); my $from = $email->header('From'); # Extract the name only when the email is of the format "name " - if ($from =~ /^(.*)\<(\S*)>/) { + if ($from =~ /^"?(.*?)"?\s*\<(\S*)>/) { $from = $1 if $1 ne ''; } # if @@ -167,36 +205,49 @@ sub MonitorMail() { $subject = decode_base64($2); } # if + # Google Talk doesn't like # + $subject =~ s/\#//g; + # Now speak it! + debugit "Speaking message from $from"; my $logmsg = "From $from $subject"; - my $msg = "Message from $from... " . quotemeta $subject; + + $msg = "Message from $from... " . quotemeta $subject; $msg =~ s/\"/\\"/g; - if (get_verbose) { - $log->msg($logmsg); - } else { - $log->log($logmsg); - } # if + debugit $logmsg; + + $cmd = "/usr/local/bin/gt \"$msg\""; - my $cmd = "/usr/local/bin/gt \"$msg\""; + my $hour = (localtime)[2]; - my ($status, @output) = Execute $cmd; + # Only announce if after 6 Am. Not this will announce up until + # midnight but that's ok. I want midnight to 6 Am as silent time. + if ($hour > 6) { + ($status, @output) = Execute $cmd; - if ($status) { - $log->err("Unable to execute $cmd" . join("\n", @output)); + if ($status) { + $log->err("Unable to execute $cmd" . join("\n", @output)); + } # if } # if $unseen{$_} = 1; } # for - verbose "Sleeping for $opts{sleep} minutes"; + debugit "Sleeping for $opts{sleep} minutes"; sleep 60 * $opts{sleep}; - verbose "Ah that was refreshing!"; + debugit "Ah that was refreshing!"; } # while + + return; } # MonitorMail +$SIG{USR2} = \&MonitorMail; + END { $IMAP->quit if $IMAP; + + $log->msg("$FindBin::Script ending!"); } # END ## Main @@ -218,6 +269,8 @@ unless ($opts{password}) { $opts{password} = GetPassword; } # unless +$opts{debug} = get_debug; + EnterDaemonMode if $opts{daemon}; $log = Logger->new( @@ -227,4 +280,5 @@ $log = Logger->new( ); Connect2IMAP; + MonitorMail;