mirror of
https://github.com/vdukhovni/postfix
synced 2025-09-02 07:05:27 +00:00
postfix-3.9-20231212
This commit is contained in:
committed by
Viktor Dukhovni
parent
984278aadf
commit
0f39d92148
@@ -27603,3 +27603,10 @@ Apologies for any names omitted.
|
|||||||
Feature: the pipe(8) delivery agent supports an ${envid}
|
Feature: the pipe(8) delivery agent supports an ${envid}
|
||||||
command-line attribute that expands to the RFC 3461 envelope
|
command-line attribute that expands to the RFC 3461 envelope
|
||||||
ID if available. File: pipe/pipe.c.
|
ID if available. File: pipe/pipe.c.
|
||||||
|
|
||||||
|
20231211
|
||||||
|
|
||||||
|
Cleanup: posttls-finger certificate match expectations for
|
||||||
|
all TLS security levels, including warnings for levels that
|
||||||
|
don't implement certificate matching. Viktor Dukhovni.
|
||||||
|
File: posttls-finger.c.
|
||||||
|
@@ -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 "20231210"
|
#define MAIL_RELEASE_DATE "20231212"
|
||||||
#define MAIL_VERSION_NUMBER "3.9"
|
#define MAIL_VERSION_NUMBER "3.9"
|
||||||
|
|
||||||
#ifdef SNAPSHOT
|
#ifdef SNAPSHOT
|
||||||
|
@@ -2145,8 +2145,12 @@ static void parse_match(STATE *state, int argc, char *argv[])
|
|||||||
switch (state->level) {
|
switch (state->level) {
|
||||||
default:
|
default:
|
||||||
state->match = 0;
|
state->match = 0;
|
||||||
|
if (*argv)
|
||||||
|
msg_warn("TLS level '%s' does not implement certificate matching",
|
||||||
|
str_tls_level(state->level));
|
||||||
break;
|
break;
|
||||||
case TLS_LEV_DANE:
|
case TLS_LEV_DANE:
|
||||||
|
case TLS_LEV_DANE_ONLY:
|
||||||
case TLS_LEV_SECURE:
|
case TLS_LEV_SECURE:
|
||||||
state->match = argv_alloc(2);
|
state->match = argv_alloc(2);
|
||||||
while (*argv)
|
while (*argv)
|
||||||
|
Reference in New Issue
Block a user