mirror of
https://github.com/vdukhovni/postfix
synced 2025-08-30 13:48:06 +00:00
postfix-2.4-20070125
This commit is contained in:
committed by
Viktor Dukhovni
parent
b6efe60750
commit
20b2ccc966
@@ -13155,6 +13155,11 @@ Apologies for any names omitted.
|
||||
is present when only AES128 is available. Code by Victor
|
||||
Duchovni. File: tls/tls_misc.c.
|
||||
|
||||
20070125
|
||||
|
||||
Disable workaround pending completion of updated TLS]
|
||||
support in non-production releases.
|
||||
|
||||
Wish list:
|
||||
|
||||
Update message content length when adding/removing headers.
|
||||
|
@@ -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 "20070123"
|
||||
#define MAIL_RELEASE_DATE "20070125"
|
||||
#define MAIL_VERSION_NUMBER "2.4"
|
||||
|
||||
#ifdef SNAPSHOT
|
||||
|
@@ -244,6 +244,7 @@ const char *tls_cipher_list(int cipher_level,...)
|
||||
/*
|
||||
* Exclude ciphers that clueless distributions leave out of libcrypto.
|
||||
*/
|
||||
#if 0
|
||||
if (exclude_unavailable == 0) {
|
||||
exclude_unavailable = argv_alloc(1);
|
||||
for (probe = cipher_probe_list; probe->algorithm; ++probe)
|
||||
@@ -252,6 +253,7 @@ const char *tls_cipher_list(int cipher_level,...)
|
||||
}
|
||||
for (i = 0; i < exclude_unavailable->argc; ++i)
|
||||
vstring_sprintf_append(buf, ":!%s", exclude_unavailable->argv[i]);
|
||||
#endif
|
||||
|
||||
va_start(ap, cipher_level);
|
||||
while ((exclude = va_arg(ap, char *)) != 0) {
|
||||
|
Reference in New Issue
Block a user