Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv15772/Proxy
Modified Files:
POP3.pm Proxy.pm
Log Message:
Remove all tabs from the source code and fix my editor so that *I* don't introduce any more
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** POP3.pm 9 Jul 2003 21:15:39 -0000 1.62
--- POP3.pm 26 Jul 2003 18:28:28 -0000 1.63
***************
*** 144,148 ****
# will pull email from. Doing this means we can act as a proxy for multiple mail clients
# and mail accounts
! my $user_command = 'USER (.+)(:(\d+))?' . $self->config_( 'separator' ) . '(.+)';
if ( $command =~ /$user_command/i ) {
if ( $1 ne '' ) {
--- 144,148 ----
# will pull email from. Doing this means we can act as a proxy for multiple mail clients
# and mail accounts
! my $user_command = 'USER (.+)(:(\d+))?' . $self->config_( 'separator' ) . '(.+)';
if ( $command =~ /$user_command/i ) {
if ( $1 ne '' ) {
Index: Proxy.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/Proxy.pm,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** Proxy.pm 26 Jul 2003 17:14:42 -0000 1.27
--- Proxy.pm 26 Jul 2003 18:28:28 -0000 1.28
***************
*** 204,216 ****
$self->mq_post_( 'CLASS', $1, '' );
! }
if ( $message =~ /NEWFL:(.*)/ ) {
$self->mq_post_( 'NEWFL', $1, '' );
! }
if ( $message =~ /LOGIN:(.*)/ ) {
$self->mq_post_( 'LOGIN', $1, '' );
! }
} else {
# This is here so that we get in errorneous position where the pipeready
--- 204,216 ----
$self->mq_post_( 'CLASS', $1, '' );
! }
if ( $message =~ /NEWFL:(.*)/ ) {
$self->mq_post_( 'NEWFL', $1, '' );
! }
if ( $message =~ /LOGIN:(.*)/ ) {
$self->mq_post_( 'LOGIN', $1, '' );
! }
} else {
# This is here so that we get in errorneous position where the pipeready
***************
*** 419,423 ****
if ( $n > 0 ) {
$self->tee_( $client, $buf ) if ( $discard != 1 );
! }
}
--- 419,423 ----
if ( $n > 0 ) {
$self->tee_( $client, $buf ) if ( $discard != 1 );
! }
}
|