X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=bin%2FannounceEmail.pl;h=d21003bc64d709a7f39433ff8fe479083817d1a2;hb=a9a87bbe82dc57fbb837f86139419eaf76095105;hp=2826ed37926704919fe858819ba0401e9432f3fd;hpb=5bc2c378646d7c7d01ca4b382ac23f4870e75c52;p=clearscm.git diff --git a/bin/announceEmail.pl b/bin/announceEmail.pl index 2826ed3..d21003b 100755 --- a/bin/announceEmail.pl +++ b/bin/announceEmail.pl @@ -42,7 +42,7 @@ $Date: 2019/04/04 13:40:10 $ -h|elp Detailed help -v|erbose Verbose mode (Default: -verbose) -de|bug Turn on debugging (Default: Off) - + -user|name User name to log in with (Default: $USER) -p|assword Password to use (Default: prompted) -i|map IMAP server to talk to (Default: defaria.com) @@ -54,6 +54,10 @@ $Date: 2019/04/04 13:40:10 $ -uses|sl Whether or not to use SSL to connect (Default: False) -useb|locking Whether to block on socket (Default: False) + Signals: + $SIG{USR1}: Toggles debug option + $SIG{USR2}: Reestablishes connection to IMAP server + =head1 DESCRIPTION This script will connect to an IMAP server, login and then monitor the user's @@ -98,6 +102,7 @@ my @greetings = ( 'I was looking in your inbox and found a message', 'Not sure you want to hear this message', 'Good news', + "What's this? A new message", ); my %opts = ( @@ -123,7 +128,17 @@ sub interrupted { return; } # interrupted +sub Connect2IMAP; + +sub restart { + $log->dbug("Re-establishing connection to $opts{imap} as $opts{username}"); + Connect2IMAP; + + goto MONITORMAIL; +} # restart + $SIG{USR1} = \&interrupted; +$SIG{USR2} = \&restart; sub unseenMsgs() { $IMAP->select('inbox') or @@ -135,6 +150,9 @@ sub unseenMsgs() { sub Connect2IMAP() { $log->dbug("Connecting to $opts{imap} as $opts{username}"); + # Destroy any old connections + undef $IMAP; + $IMAP = Mail::IMAPTalk->new( Server => $opts{imap}, Username => $opts{username}, @@ -236,27 +254,9 @@ sub MonitorMail() { # If we return from idle then the server went away for some reason. With Gmail # the server seems to time out around 30-40 minutes. Here we simply reconnect # to the imap server and continue to MonitorMail. - $log->dbug("MonitorMail: Connection to $opts{imap} ended - lasted " - . howlong $startTime); - - # Destroy current IMAP connection - $log->dbug("MonitorMail: Destroying IMAP connection to $opts{imap}"); + restart; - undef $IMAP; - - # Re-establish connection - Connect2IMAP; - - $log->dbug("MonitorMail: Reconnected to IMAP server $opts{imap}"); - - # MonitorMail again - the dreaded goto! Seems the cleanest way to restart - # in this instance. I could call MonitorMail() recursively but that would - # leave junk on the stack. - $log->dbug('MonitorMail: Going back to the top of the loop'); - - goto MONITORMAIL; - - return; # To make perlcritic happy + return; } # MonitorMail END {