From: Manni H. <man...@us...> - 2007-12-01 22:37:32
|
Update of /cvsroot/popfile/engine/Services/IMAP In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14084/Services/IMAP Modified Files: Client.pm Log Message: Add comments to some of my hackery. Index: Client.pm =================================================================== RCS file: /cvsroot/popfile/engine/Services/IMAP/Client.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Client.pm 26 Nov 2007 14:48:21 -0000 1.2 --- Client.pm 1 Dec 2007 22:37:36 -0000 1.3 *************** *** 60,64 **** --- 60,68 ---- my $self = bless {}, $class; + # This is needed when the client module is run in POPFile 0.22.2 context $self->{logger__} = $log or return; + # And this one is for the 0.23 (aka 2.0) context: + $self->{modules__}{logger} = $log; + $self->{config__} = $config or return; $self->{global_config__} = $global_config or return; |