diff options
author | ghen <ghen@pkgsrc.org> | 2006-11-04 21:44:03 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-11-04 21:44:03 +0000 |
commit | ec37a74888ba11ba6e87ff9e38d1fa641aa7bc36 (patch) | |
tree | b38b6f41987f006a30e929912720699f4b2de7cd /mail | |
parent | c0e46aadf29336fabc6d7eb7cde00540e4aa16a0 (diff) | |
download | pkgsrc-ec37a74888ba11ba6e87ff9e38d1fa641aa7bc36.tar.gz |
Update to dovecot-1.0rc11. From the release announcement mail:
Hopefully the last RC release? As far as I know there are no major
problems left now. If nothing big shows up, v1.0 should be out in a
couple of weeks.
* Renamed default_mail_env to mail_location. default_mail_env still
works for backwards compatibility.
* deliver: When sending rejects, don't include Content-Type in the
rejected mail's headers.
* LDAP changes:
* If auth binds are used, bind back to the default dn before doing
a search. Otherwise it could fail if a user gave an invalid
password.
* Initial binding at connect is now done asynchronously.
* Use pass_attrs even with auth_bind=yes since it may contain
useful non-password fields.
+ passdb checkpassword: Give TCPLOCALIP and TCPREMOTEIP and PROTO=TCP
environments to the checkpassword binary so we're UCSPI (and vchkpw)
compatible.
- mbox handling was a bit broken in rc10
- Using Dovecot via inetd kept crashing dovecot master
- deliver: Don't crash with -f "". Changed the default from envelope
to be "MAILER-DAEMON".
- INBOX wasn't shown with LSUB command if only prefixed namespaces
were used.
- passdb ldap: Reconnecting to LDAP server wasn't working with
auth binds.
- passdb sql: Non-plaintext authentication didn't work
- MySQL passdb ignored all non-password checks, such as allow_nets
- trash plugin was broken
Diffstat (limited to 'mail')
-rw-r--r-- | mail/dovecot/Makefile | 4 | ||||
-rw-r--r-- | mail/dovecot/distinfo | 10 | ||||
-rw-r--r-- | mail/dovecot/patches/patch-ag | 6 |
3 files changed, 10 insertions, 10 deletions
diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index c623a6b5f9f..5855fcbffcc 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.70 2006/10/16 06:55:47 ghen Exp $ +# $NetBSD: Makefile,v 1.71 2006/11/04 21:44:03 ghen Exp $ -DISTNAME= dovecot-1.0.rc10 +DISTNAME= dovecot-1.0.rc11 PKGNAME= ${DISTNAME:S/.rc/rc/} CATEGORIES= mail MASTER_SITES= http://www.dovecot.org/releases/ diff --git a/mail/dovecot/distinfo b/mail/dovecot/distinfo index d0f32dfe43a..5607cf70a0a 100644 --- a/mail/dovecot/distinfo +++ b/mail/dovecot/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.43 2006/10/16 06:55:47 ghen Exp $ +$NetBSD: distinfo,v 1.44 2006/11/04 21:44:03 ghen Exp $ -SHA1 (dovecot-1.0.rc10.tar.gz) = 3c10464b0a5d3b285a9528c11e4057b0afa11cb0 -RMD160 (dovecot-1.0.rc10.tar.gz) = 1dddb6b620ac373703af845e59ed069919c37377 -Size (dovecot-1.0.rc10.tar.gz) = 1452437 bytes +SHA1 (dovecot-1.0.rc11.tar.gz) = b300b5f2d4a4b31e1a579fe616278a7ab28e7b61 +RMD160 (dovecot-1.0.rc11.tar.gz) = 08d469378639998d587e04b700c3a7398718b053 +Size (dovecot-1.0.rc11.tar.gz) = 1457850 bytes SHA1 (patch-aa) = 6258057d49add91f06d4dd51ded72e42f6774354 SHA1 (patch-ab) = 6b6b1dcc9201eca1cedbea5daf6071403e04f14d -SHA1 (patch-ag) = d2dd85d06158ab629f5e394a7f75d9862a67b58f +SHA1 (patch-ag) = bd180441a0983ceccc898024370a3bdefdc11b1f diff --git a/mail/dovecot/patches/patch-ag b/mail/dovecot/patches/patch-ag index 9f1c9340657..a365b51afc6 100644 --- a/mail/dovecot/patches/patch-ag +++ b/mail/dovecot/patches/patch-ag @@ -1,6 +1,6 @@ -$NetBSD: patch-ag,v 1.2 2006/10/09 19:06:57 ghen Exp $ +$NetBSD: patch-ag,v 1.3 2006/11/04 21:44:03 ghen Exp $ ---- src/deliver/deliver.c.orig 2006-10-09 20:59:33.000000000 +0200 +--- src/deliver/deliver.c.orig 2006-11-02 21:03:30.000000000 +0100 +++ src/deliver/deliver.c @@ -30,7 +30,7 @@ @@ -8,6 +8,6 @@ $NetBSD: patch-ag,v 1.2 2006/10/09 19:06:57 ghen Exp $ #define DEFAULT_AUTH_SOCKET_PATH PKG_RUNDIR"/auth-master" -#define DEFAULT_SENDMAIL_PATH "/usr/lib/sendmail" +#define DEFAULT_SENDMAIL_PATH "/usr/sbin/sendmail" - #define DEFAULT_ENVELOPE_SENDER "dovecot.deliver" + #define DEFAULT_ENVELOPE_SENDER "MAILER-DAEMON" /* After buffer grows larger than this, create a temporary file to /tmp |