diff --git a/lib/Qpsmtpd/Connection.pm b/lib/Qpsmtpd/Connection.pm index 7020f7f..b12bbb5 100644 --- a/lib/Qpsmtpd/Connection.pm +++ b/lib/Qpsmtpd/Connection.pm @@ -43,6 +43,7 @@ sub clone { foreach my $f ( @parameters ) { $new->$f($self->$f()) if $self->$f(); } + $new->{_notes} = $self->{_notes} if defined $self->{_notes}; # reset the old connection object like it's done at the end of a connection # to prevent leaks (like prefork/tls problem with the old SSL file handle # still around) diff --git a/plugins/tls b/plugins/tls index a19fddf..7501b90 100644 --- a/plugins/tls +++ b/plugins/tls @@ -22,7 +22,7 @@ Path to the private key file. Default: I =item B -Path to the certificate autority file. Default: I +Path to the certificate authority file. Default: I =back