cvs commit: qpsmtpd/lib/Qpsmtpd SMTP.pm
[email protected] (Ask "Bj?rn" Hansen)
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 04/02/24 02:31:12
Modified: . Changes
lib/Qpsmtpd SMTP.pm
Log:
reset_transaction is called after disconnect plugins are called so
the Transaction objects DESTROY method is called. (Thanks to Robert
James Kaes <[email protected]>)
Revision Changes Path
1.57 +4 -0 qpsmtpd/Changes
Index: Changes
===================================================================
RCS file: /cvs/public/qpsmtpd/Changes,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -w -r1.56 -r1.57
--- Changes 22 Feb 2004 02:17:29 -0000 1.56
+++ Changes 24 Feb 2004 10:31:11 -0000 1.57
@@ -1,5 +1,9 @@
0.27
+ reset_transaction is called after disconnect plugins are called so
+ the Transaction objects DESTROY method is called. (Thanks to Robert
+ James Kaes <[email protected]>)
+
Made the SpamAssassin plugin work with SA 2.6+ (thanks to numerous
contributors, thanks everyone!). Note that for now it's not
including the Spam: headers with the score explained. For that use
1.23 +1 -0 qpsmtpd/lib/Qpsmtpd/SMTP.pm
Index: SMTP.pm
===================================================================
RCS file: /cvs/public/qpsmtpd/lib/Qpsmtpd/SMTP.pm,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -w -r1.22 -r1.23
--- SMTP.pm 13 Feb 2004 13:10:18 -0000 1.22
+++ SMTP.pm 24 Feb 2004 10:31:12 -0000 1.23
@@ -320,6 +320,7 @@
sub disconnect {
my $self = shift;
$self->run_hooks("disconnect");
+ $self->reset_transaction;
}
sub data {