mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-30 13:48:06 +00:00
snapshot-20001212
This commit is contained in:
parent
290ad1af00
commit
bc417d155f
@ -4614,3 +4614,14 @@ Apologies for any names omitted.
|
||||
Small dirt: postconf -m produced too much output due to a
|
||||
missing "else", and the optional SASL code needed a fix
|
||||
for the changed name_mask API.
|
||||
|
||||
20001212
|
||||
|
||||
Workaround: due to an error, record type L for "filter
|
||||
transport name" was the same as that for the already existing
|
||||
record type L for "record not ending in newline", causing
|
||||
the pickup daemon to discard all records not ending in
|
||||
newline. The code cannot be changed without breaking
|
||||
compatibility with queued mail, so the pickup server is
|
||||
changed to discard type L records only from the message
|
||||
envelope, not from the content. File: pickup/pickup.c.
|
||||
|
@ -15,7 +15,7 @@
|
||||
* Version of this program.
|
||||
*/
|
||||
#define VAR_MAIL_VERSION "mail_version"
|
||||
#define DEF_MAIL_VERSION "Snapshot-20001211"
|
||||
#define DEF_MAIL_VERSION "Snapshot-20001212"
|
||||
extern char *var_mail_version;
|
||||
|
||||
/* LICENSE
|
||||
|
@ -180,7 +180,7 @@ static int copy_segment(VSTREAM *qfile, VSTREAM *cleanup, PICKUP_INFO *info,
|
||||
info->rcpt = mystrdup(vstring_str(buf));
|
||||
if (type == REC_TYPE_TIME)
|
||||
continue;
|
||||
if (type == REC_TYPE_FILT)
|
||||
if (type == REC_TYPE_FILT && *expected == REC_TYPE_ENVELOPE[0])
|
||||
continue;
|
||||
else {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user