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

postfix-2.4-20070125

This commit is contained in:
Wietse Venema 2007-01-25 00:00:00 -05:00 committed by Viktor Dukhovni
parent b6efe60750
commit 20b2ccc966
3 changed files with 8 additions and 1 deletions

View File

@ -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.

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 "20070123"
#define MAIL_RELEASE_DATE "20070125"
#define MAIL_VERSION_NUMBER "2.4"
#ifdef SNAPSHOT

View File

@ -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) {