Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv11857/Proxy
Modified Files:
POP3.pm
Log Message:
Moved the set up of timeeout, mcount and ecount to Configuration.pm where they belong since they are globals and were being set up in POP3
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** POP3.pm 6 Mar 2003 23:10:19 -0000 1.48
--- POP3.pm 8 Mar 2003 00:51:50 -0000 1.49
***************
*** 62,68 ****
$self->config_( 'secure_port', 110 );
- # The default timeout in seconds for POP3 commands
- $self->global_config_( 'timeout', 60 );
-
# Only accept connections from the local machine for POP3
$self->config_( 'local', 1 );
--- 62,65 ----
***************
*** 70,77 ****
# Whether to do classification on TOP as well
$self->config_( 'toptoo', 0 );
-
- # Start with no messages downloaded and no error
- $self->global_config_( 'mcount', 0 );
- $self->global_config_( 'ecount', 0 );
# The separator within the POP3 username is :
--- 67,70 ----
|