r4445@g5: ask | 2006-02-17 11:00:12 -0800

prepare for 0.32 -- plan release for next thursday
 r4446@g5:  ask | 2006-02-17 11:00:48 -0800
 tag 0.32rc1


git-svn-id: https://svn.perl.org/qpsmtpd/branches/0.3x@615 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
Ask Bjørn Hansen 2006-02-17 19:02:02 +00:00
parent 3574e75cd1
commit d8d7b7a407
2 changed files with 10 additions and 3 deletions

11
Changes
View File

@ -1,4 +1,4 @@
0.32 - 0.32 - 2006/02/23
Add logging/file plugin for simple logging to a file (Devin Carraway and Add logging/file plugin for simple logging to a file (Devin Carraway and
Peter J. Holzer). Peter J. Holzer).
@ -11,7 +11,7 @@
Add plugins/tls_cert to generate appropriately shaped self-signed certs for Add plugins/tls_cert to generate appropriately shaped self-signed certs for
TLS support. Add explicit use of CA used to sign cert. Abstract clone()ing TLS support. Add explicit use of CA used to sign cert. Abstract clone()ing
of connection information when switching to TLS. Fix Qpsmtpd::Auth to work of connection information when switching to TLS. Fix the AUTH code to work
correctly with TLS. correctly with TLS.
Add hosts_allow plugin to support pre- and post-connection hooks as well Add hosts_allow plugin to support pre- and post-connection hooks as well
@ -20,6 +20,13 @@
Improve postfix-queue plugin to support the known processing flags (Hanno Improve postfix-queue plugin to support the known processing flags (Hanno
Hecker). Hecker).
Drop root privileges before loading plugins, rather than after.
A few fixes to the clamdscan plugin (Dave Rolsky)
Various minor fixes and improvements
0.31.1 - 2005/11/18 0.31.1 - 2005/11/18
Add missing files to the distribution, oops... (Thanks Budi Ang!) Add missing files to the distribution, oops... (Thanks Budi Ang!)

View File

@ -5,7 +5,7 @@ use vars qw($VERSION $Logger $TraceLevel $Spool_dir $Size_threshold);
use Sys::Hostname; use Sys::Hostname;
use Qpsmtpd::Constants; use Qpsmtpd::Constants;
$VERSION = "0.31.1"; $VERSION = "0.32";
sub version { $VERSION }; sub version { $VERSION };