2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-31 06:05:37 +00:00

postfix-2.5-20070529

This commit is contained in:
Wietse Venema
2007-05-29 00:00:00 -05:00
committed by Viktor Dukhovni
parent cae5caf539
commit 1ad70a3fad
3 changed files with 12 additions and 5 deletions

View File

@@ -13565,9 +13565,15 @@ Apologies for any names omitted.
20070525
Bugfix (introduced 20070523) the sasl_set_path() function
Bugfix (introduced 20070523): the sasl_set_path() function
name was mis-speeled.
20070529
Bugfix (introduced Postfix 2.3): the sendmail/postdrop
commands would hang when trying to submit a message larger
than the per-message size limit. File: postdrop/postdrop.c.
Wish list:
Update attr_print/scan() so they can send/receive file

View File

@@ -20,7 +20,7 @@
* Patches change both the patchlevel and the release date. Snapshots have no
* patchlevel; they change the release date only.
*/
#define MAIL_RELEASE_DATE "20070525"
#define MAIL_RELEASE_DATE "20070529"
#define MAIL_VERSION_NUMBER "2.5"
#ifdef SNAPSHOT

View File

@@ -438,9 +438,10 @@ int main(int argc, char **argv)
if (REC_PUT_BUF(dst->stream, rec_type, buf) < 0) {
/* rec_get() errors must not clobber errno. */
saved_errno = errno;
while (rec_get_raw(VSTREAM_IN, buf, var_line_limit,
REC_FLAG_NONE) > 0)
/* void */ ;
while ((rec_type = rec_get_raw(VSTREAM_IN, buf, var_line_limit,
REC_FLAG_NONE)) != REC_TYPE_END)
if (rec_type <= 0)
msg_fatal("uid=%ld: malformed input", (long) uid);
errno = saved_errno;
break;
}