2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-29 05:07:58 +00:00

postfix-3.9-20231223

This commit is contained in:
Wietse Venema 2023-12-23 00:00:00 -05:00 committed by Viktor Dukhovni
parent f7f63b0b66
commit f743309c6d
2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -4772,6 +4772,9 @@ static int xclient_cmd(SMTPD_STATE *state, int argc, SMTPD_TOKEN *argv)
*/ */
xclient_allowed = xclient_allowed =
namadr_list_match(xclient_hosts, state->name, state->addr); namadr_list_match(xclient_hosts, state->name, state->addr);
smtp_forbid_bare_lf = SMTPD_STAND_ALONE((state)) == 0
&& var_smtpd_forbid_bare_lf
&& !namadr_list_match(bare_lf_excl, state->name, state->addr);
/* NOT: tls_reset() */ /* NOT: tls_reset() */
if (got_helo == 0) if (got_helo == 0)
helo_reset(state); helo_reset(state);