<div dir="ltr"><div><div>Hrm.<br><br><br></div>I did some googling, and it seems I am not the only one running into this issue. It seems making this change in the script can be used as a workaround, but im not sure if this is seen as an acceptable change.<br><br><br>$ diff -u ./buildbot/bin/sendEmail ~/tmp/sendEmail<br>--- ./buildbot/bin/sendEmail    2014-11-24 20:48:38.005980248 +0100<br>+++ /home/buildslave/tmp/sendEmail      2015-01-24 10:32:40.101195889 +0100<br>@@ -1903,7 +1903,7 @@<br>     if ($conf{'tls_server'} == 1 and $conf{'tls_client'} == 1 and $opt{'tls'} =~ /^(yes|auto)$/) {<br>         printmsg("DEBUG => Starting TLS", 2);<br>         if (SMTPchat('STARTTLS')) { quit($conf{'error'}, 1); }<br>-        my $ssl_ver = 'SSLv3 TLSv1';<br>+        my $ssl_ver = 'SSLv3';<br>         chomp(my $system = `uname -o`);<br>         if ($system eq 'Cygwin') { $ssl_ver = 'SSLv3'; }<br>         if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => $ssl_ver)) {<br><br><br></div><div>I guess I can make a copy of the script, make the modification in that version, and use that modified sendEmail version in my shell script. However, you would then end up with 2 different versions of the sendEmail script which i guess is less than ideal as well.<br></div><div><br><br><br></div>- Maarten<br></div>