On Wed, Sep 18, 2019 at 03:47:57PM +0200, Cyborg via Exim-users wrote: > As you all heared, Richard Stallmann as resigned from it's positions. > Not the topic here, > but it caused me to send him a letter, which I do once in a while. ... > this server does only speak TLS 1.0 from 1998. > > If you have the opportunity to inform those admins, please do so. > > I can't, because our server does not longer speak > outdated-broken-beyond-repair-protocols from the last millenium and > refuses plaintext smtp too ;)
If you want to send a single mail, you can do: ( sleep 3 ; echo "EHLO benderirc.de" sleep 1 ; echo "MAIL FROM: <[email protected]>" sleep 1 ; echo DATA sleep 1 ; cat /path/to/mail.file echo "." ; sleep 3 echo QUIT ; sleep 1 ) | openssl s_client -connect eggs.gnu.org:25 -tls1 -starttls smtp For regular mail exchange this approach is not very comfortable, yes. :) -- Eugene Berdnikov -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
