diff options
author | 2022-11-23 04:13:04 +0000 | |
---|---|---|
committer | 2022-11-23 04:13:04 +0000 | |
commit | 3047a3a2b723c5572d6120512450e0cf9eca7395 (patch) | |
tree | 25977a194f4cb3d4f98646fbe926bd0aca242d83 /net-mail/sendEmail/files | |
parent | dev-libs/libucl: add github upstream metadata (diff) | |
download | gentoo-3047a3a2b723c5572d6120512450e0cf9eca7395.tar.gz gentoo-3047a3a2b723c5572d6120512450e0cf9eca7395.tar.bz2 gentoo-3047a3a2b723c5572d6120512450e0cf9eca7395.zip |
net-mail/sendEmail: fix openssl 1.1 compat
Closes: https://bugs.gentoo.org/698322
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-mail/sendEmail/files')
-rw-r--r-- | net-mail/sendEmail/files/1.56-openssl-1.1.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net-mail/sendEmail/files/1.56-openssl-1.1.patch b/net-mail/sendEmail/files/1.56-openssl-1.1.patch new file mode 100644 index 00000000000..ed504645199 --- /dev/null +++ b/net-mail/sendEmail/files/1.56-openssl-1.1.patch @@ -0,0 +1,12 @@ +https://bugs.gentoo.org/698322 +--- a/sendEmail ++++ b/sendEmail +@@ -1903,7 +1903,7 @@ + if ($conf{'tls_server'} == 1 and $conf{'tls_client'} == 1 and $opt{'tls'} =~ /^(yes|auto)$/) { + printmsg("DEBUG => Starting TLS", 2); + if (SMTPchat('STARTTLS')) { quit($conf{'error'}, 1); } +- if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3', SSL_verify_mode => 0x00)) { ++ if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'TLSv1', SSL_verify_mode => 0x00)) { + quit("ERROR => TLS setup failed: " . IO::Socket::SSL::errstr(), 1); + } + printmsg("DEBUG => TLS: Using cipher: ". $SERVER->get_cipher(), 3); |