cvs commit: qpsmtpd/lib/Qpsmtpd SMTP.pm
[email protected] (Robert Spier)
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/09/06 22:50:36
Modified: lib/Qpsmtpd SMTP.pm
Log:
Qpsmtpd::TCPServer will handle calling load_plugins. We *really* only
want to call it once per process.
Revision Changes Path
1.40 +3 -2 qpsmtpd/lib/Qpsmtpd/SMTP.pm
Index: SMTP.pm
===================================================================
RCS file: /cvs/public/qpsmtpd/lib/Qpsmtpd/SMTP.pm,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -w -r1.39 -r1.40
--- SMTP.pm 5 Sep 2004 16:28:08 -0000 1.39
+++ SMTP.pm 7 Sep 2004 05:50:36 -0000 1.40
@@ -34,7 +34,8 @@
# this list of valid commands should probably be a method or a set of methods
$self->{_commands} = \%commands;
- $self->load_plugins;
+ # TCPServer handles plugin loader
+ #$self->load_plugins;
$self;
}