• =?UTF-8?Q?Wie_kann_ich_Emails_=C3=BCber_GMX_konto_versenden=3F?=

    From markus@21:1/5 to All on Thu Jun 16 01:12:18 2022
    hi,
    wie kann ich mails mit tcl über ein gmx email konto versenden? hab vieles versucht, bekomms aber mit ::smtp::sendmessage nicht hin.

    hab diese einstellungen versucht: mail.gmx.net 587 tls, hab aber auch keine erfahrung mit SASL. ich konnte mich aber nie erfolgreich anmelden.

    hat jemand eine idee und ein beispiel dafür?

    ciao markus

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From ALX@21:1/5 to All on Fri Jun 17 00:23:05 2022
    package require tls
    ::tls::init -tls 1 -ssl3 0 -ssl0 0

    ::smtp::sendmessage ... -ports {25 587 465} -usetls 1 ...

    It is very important to use a current tcltls version =v1.7.22. The old tls 1.6.x does not use current crypo-alogrythms.
    Alex

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)