From: <jgr...@us...> - 2003-03-08 00:50:30
|
Update of /cvsroot/popfile/engine/POPFile In directory sc8-pr-cvs1:/tmp/cvs-serv11405/POPFile Modified Files: Configuration.pm Log Message: Could not resist making a comment even clearer after a forum post by Sam Index: Configuration.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Configuration.pm,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Configuration.pm 7 Mar 2003 13:33:12 -0000 1.13 --- Configuration.pm 8 Mar 2003 00:50:27 -0000 1.14 *************** *** 68,74 **** --- 68,85 ---- # message_count is a local counter within that download, for sorting # purposes must sort on download_count and then message_count + # + # download_count is incremented every time POPFile forks to + # start a session for downloading messages (see Proxy::Proxy::service + # for details) $self->global_config_( 'download_count', 0 ); + # We keep track of the total number of messages downloaded (the mcount) + # and the total number of classification errors made (ecount) which is + # actually the number of times a message is reclassified in the UI + + $self->global_config_( 'mcount', 0 ); + $self->global_config_( 'ecount', 0 ); + # Subject modification (global setting is on) $self->global_config_( 'subject', 1 ); *************** *** 77,81 **** $self->global_config_( 'xtc', 1 ); ! # Adding the X-POPFile-Link is no $self->global_config_( 'xpl', 1 ); --- 88,92 ---- $self->global_config_( 'xtc', 1 ); ! # Adding the X-POPFile-Link is on $self->global_config_( 'xpl', 1 ); |