diff options
author | itojun <itojun> | 2000-11-27 15:54:32 +0000 |
---|---|---|
committer | itojun <itojun> | 2000-11-27 15:54:32 +0000 |
commit | 35f2540c1b8038aa5f029fbebb385c82506afdb4 (patch) | |
tree | c965c260c39aa8717b9dc9a39706a55dffe96344 /mail | |
parent | e32fdfd3751441b53e3512b21dd125549b2c4d5a (diff) | |
download | pkgsrc-35f2540c1b8038aa5f029fbebb385c82506afdb4.tar.gz |
upgrade to snapshot 2000/11/21 + KAME IPv6 patch.
---
20001024
Documentation: the canonical, virtual etc. manual pages
did not document the effect of leading whitespace.
20001025
Bugfix: virtual map expansion stopped too early with
self-referential aliases. Reported by Michael Douglass
@ datafoundry.net. File: cleanup/cleanup_map1n.c.
20001026
Horror: postmap and postalias (newaliases) silently lose
the file lock while building a lookup table with Berkeley
DB 2.x and later on Solaris, HP-UX, IRIX, and UNIXWARE.
The result is that table lookups fail while the table is
being built, so that mail is lost. In order to avoid this
misbehavior one has to use an undocumented feature that is
NOT available with the DB1.85 compatibility interface.
Therefore, Postfix now supports three Berkeley DB programming
interfaces of increasing complexity. File: util/dict_db.c.
Bugfix: some character manipulations were not portable for
signed/unsigned characters. Files: global/quote_821_local.c,
global/quote_822_local.c.
Workaround: apparently, some software sends SMTP mail that
begins with "From sender time-stamp". Sendmail silently
ignores such RFC violating garbage, and therefore Postfix
needs to jump another hoop. File: smtpd/smtpd.c.
20001028
Bugfix: the flush server tried to access config files after
going to the chroot jail. Found by Lutz Jaenicke, TU-Cottbus.DE.
File: flush/flush.c.
Update: revised LDAP module from primary maintainer John
Hensley, with contributions from many other people. Files:
util/dict_ldap.c, LDAP_README.
Update: LINUX2 chroot setup script by Matthias Andree,
uni-dortmund.de.
Feature: specify unix:/path/name for LMTP connections over
UNIX-domain sockets, and specify inet:host or inet:host:port
for IPV4. If no unix: or inet: is specified, IPV4 is assumed.
File: lmtp/lmtp_connect.c.
Feature: added UNIX-domain support to the smtpstone test
programs in order to test the LMTP client UNIX-domain
support.
20001030
Bugfix: further testing in preparation for 19991231-pl10
revealed that the DB map code was now broken for every
platform.
20001031
Performance: the slow start (gradually increase number of
parallel connections to the same site) was too gentle and
Postfix would back off too quickly. Files: qmgr/qmgr_queue.c
and nqmgr/qmgr_queue.c.
20001101
FAQ update by Ralph Hildebrandt.
20001104
Portability: RedHat Linux has changed incompatibly, again.
Fixed with the help of Matthias Andree. File: makedefs.
20001109
Cleanup: changed prototype of internal function that did
not return a useful result. File: src/util/vstream_popen.c.
20001110
Workaround: the Debian post install script passes an open
file descriptor into the master server and waits forever.
Reported by Lamont Jones. File: master/master.c.
20001114
Compatibility: added sendmail -G (gateway submission) option
for compatibility with the sendmail rmail command. Requested
by David Gilbert, Velocet Communications.
20001116
Documentation: added MAILER-DAEMON to the list of sample
masquerade_exceptions settings in conf/sample-rewrite.cf.
Suggested by Karl O. Pinc, pop.artic.edu.
Performance: the slow start (gradually increase number of
parallel connections to the same site) was too gentle and
Postfix would back off too quickly. Files: qmgr/qmgr_queue.c
and nqmgr/qmgr_queue.c. Yup, changed the same code, again.
We now allow for a margin above the actual concurrency,
with the size of the initial destination concurrency.
Final solution by Patrik Rak.
Bugfix: the recipient home directory test broke mailbox_transport
support for non-UNIX recipients. File: local/recipient.c.
20001117
Robustness: additional integrity tests for the nqmgr by
Patrik Rak. File: nqmgr/qmgr_message.c.
20001118
Bugfix: the new LDAP client code did not work properly if
the new ldap_domain parameter was not specified. LaMont
Jones, HP. File: util/dict_ldap.c.
Feature: the soft_bounce safety net is extended to the SMTP
server. With "soft_bounce = yes", The SMTP server changes
all 5xx (reject) replies into 4xx (try again) replies.
Documentation: the virtual(5) man page now documents both
Postfix-style virtual domains and Sendmail-style virtual
domains, including their interaction with local usernames,
aliases and mailing lists. Hopefully, this ends some of
the confusion surrounding virtual domain support. Updated
several FAQ entries concerning virtual domain support.
Documentation: added FAQ entry for the biff service.
20001119
Bugfix: per-destination queue names were case sensitive so
that the same site could have multiple queues. Reported
by Patrik Rak. Files: *qmgr/qmgr_message.c.
20001120
Bugfix: per-destination deferred mail logfiles were case
sensitive so that the same site could have multiple deferred
mail logfiles, so that not all mail would be flushed with
ETRN. Reported by Ralph Hildebrandt. Files: flush/flush.c.
Portability: added (int) casts to printf-like arguments
that specify the width of %*letter conversions. On some
systems, sizeof and pointer difference expressions are
wider than an int. Reported by Valentin Nechayev @ lucky.net.
20001121:
Compatibility: Postfix now retries delivery when an external
command is killed by a signal, because people expect such
behavior from Sendmail. File: global/pipe_command.c.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/postfix-current/Makefile | 8 | ||||
-rw-r--r-- | mail/postfix-current/files/md5 | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index b29b3fb678c..302334cef6e 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.9 2000/10/29 12:01:05 itojun Exp $ +# $NetBSD: Makefile,v 1.10 2000/11/27 15:54:32 itojun Exp $ -DISTNAME= snapshot-20001005 -PKGNAME= postfix-20001005 +DISTNAME= snapshot-20001121 +PKGNAME= postfix-20001121 CATEGORIES= mail MASTER_SITES= ftp://postfix.cloud9.net/experimental/ -PATCHFILES= postfix-20001005snap-v6-20001011a.diff.gz +PATCHFILES= postfix-20001121snap-v6-20001128a.diff.gz PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ PATCH_DIST_STRIP+= -p1 diff --git a/mail/postfix-current/files/md5 b/mail/postfix-current/files/md5 index 4262915f426..df7d9b77225 100644 --- a/mail/postfix-current/files/md5 +++ b/mail/postfix-current/files/md5 @@ -1,4 +1,4 @@ -$NetBSD: md5,v 1.3 2000/10/15 14:10:20 itojun Exp $ +$NetBSD: md5,v 1.4 2000/11/27 15:54:34 itojun Exp $ -MD5 (postfix/snapshot-20001005.tar.gz) = 6a6f263037043536659bcfe3b58437f6 -MD5 (postfix/postfix-20001005snap-v6-20001011a.diff.gz) = 2aca31132e934918c38ee2e619431dc1 +MD5 (postfix/snapshot-20001121.tar.gz) = c2c20ea7ba47c42af8c2da6ffbef855c +MD5 (postfix/postfix-20001121snap-v6-20001128a.diff.gz) = 0b8bddd0045ab5fd695989ac52f2e4e3 |