From: Manni H. <man...@us...> - 2007-12-01 21:11:35
|
Update of /cvsroot/popfile/engine/Services In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15626/Services Modified Files: Tag: b0_22_2 IMAP.pm Log Message: fix a little typo Index: IMAP.pm =================================================================== RCS file: /cvsroot/popfile/engine/Services/IMAP.pm,v retrieving revision 1.9.4.16 retrieving revision 1.9.4.17 diff -C2 -d -r1.9.4.16 -r1.9.4.17 *** IMAP.pm 1 Dec 2007 11:19:06 -0000 1.9.4.16 --- IMAP.pm 1 Dec 2007 21:11:27 -0000 1.9.4.17 *************** *** 786,790 **** if ( $magnet_used ) { ! $self->log_( 0, "Message was with slot $slot classified as $class using a magnet." ); syswrite $pseudo_mailer, "\nThis message was classified based on a magnet.\nThe body of the message was not retrieved from the server.\n"; } --- 786,790 ---- if ( $magnet_used ) { ! $self->log_( 0, "Message with slot $slot was classified as $class using a magnet." ); syswrite $pseudo_mailer, "\nThis message was classified based on a magnet.\nThe body of the message was not retrieved from the server.\n"; } *************** *** 1504,1508 **** my $something_changed = undef; ! if ( $form->{imap_hostname} ) { $templ->param( IMAP_connection_if_hostname_error => 0 ); if ( $self->config_( 'hostname' ) ne $form->{imap_hostname} ) { --- 1504,1508 ---- my $something_changed = undef; ! if ( $form->{imap_hostname} && $form->{imap_hostname} =~ /^\S+/ ) { $templ->param( IMAP_connection_if_hostname_error => 0 ); if ( $self->config_( 'hostname' ) ne $form->{imap_hostname} ) { |