Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv22415/Proxy
Modified Files:
POP3.pm
Log Message:
Fix a bug that was preventing use of the host:port:username syntax
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** POP3.pm 30 Jul 2003 22:48:58 -0000 1.64
--- POP3.pm 30 Jul 2003 23:06:12 -0000 1.65
***************
*** 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 '' ) {
|