mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-30 05:38:06 +00:00
postfix-2.4-20061002
This commit is contained in:
parent
911ee6f582
commit
16f9d06b5b
@ -12757,6 +12757,16 @@ Apologies for any names omitted.
|
||||
Bugfix (introduced with Postfix 2.2): smtp_generic_maps
|
||||
turned on MIME conversion. File: smtp/smtp_proto.c.
|
||||
|
||||
Workaround: don't send SIZE information in the MAIL FROM
|
||||
command when message content will be subject to 8bit ->
|
||||
quoted-printable conversion. File: smtp/smtp_proto.c.
|
||||
|
||||
20061002
|
||||
|
||||
Compatibility: Sendmail now invokes the Milter connect
|
||||
action with the verified hostname instead of the name
|
||||
obtained with PTR lookup. File: smtpd/smtpd.c.
|
||||
|
||||
Wish list:
|
||||
|
||||
Update FILTER_README with mailing list suggestions to tag
|
||||
|
@ -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 "20060930"
|
||||
#define MAIL_RELEASE_DATE "20061001"
|
||||
#define MAIL_VERSION_NUMBER "2.4"
|
||||
|
||||
#ifdef SNAPSHOT
|
||||
|
@ -3901,7 +3901,7 @@ static void smtpd_proto(SMTPD_STATE *state)
|
||||
if (smtpd_milters != 0 && SMTPD_STAND_ALONE(state) == 0) {
|
||||
milter_macro_callback(smtpd_milters, smtpd_milter_eval,
|
||||
(void *) state);
|
||||
if ((err = milter_conn_event(smtpd_milters, state->reverse_name,
|
||||
if ((err = milter_conn_event(smtpd_milters, state->name,
|
||||
state->addr, XXX_NO_PORT,
|
||||
state->addr_family)) != 0)
|
||||
err = check_milter_reply(state, err);
|
||||
|
Loading…
x
Reference in New Issue
Block a user