Seite 1 von 1

Email mit Outlook.com

Verfasst: Di 9. Okt 2012, 21:58
von ediik
Hi,

ich hab ein kleines Problem ich würde gerne mit Outlook.com meine Crashmails versenden.

mein Problem ist das ich allem anschein nach alles richtig eingestellt habe. Outlook benutzt, so wie hotmail vorher auch, STARTTLS. Das hab ich auch dementsprechend beachtet

Er wirft mir mit diesem Test

Code: Alles auswählen

sendEmail -f XXX@outlook.com -t YYY@gmail.com -u TEST -m TESTESTESTEST -s ssl://smtp.live.com:587 -xu XXX@outlook.com -xp ZzZzZzZ
folgendes aus:

Code: Alles auswählen

Oct 09 22:57:08 SERVER sendEmail[31382]: ERROR => Connection attempt to ssl//:smtp.live.com failed: IO::Socket::INET: Bad service 'smtp.live.com'

Re: Email mit Outlook.com

Verfasst: Di 9. Okt 2012, 22:34
von feissmaik
SSL ist etwas anderes als TLS

Versuch es also mal mit anstatt "ssl://" -> "tls://"



PS: live.com ist soweit ich weiss aber Hotmail

Re: Email mit Outlook.com

Verfasst: Di 9. Okt 2012, 22:48
von ediik
hat leider nicht funktioniert.

SSL ist der Vorgänger von TLS. SSL 3.1 = TLS 1.0

deswegen habe ich mir auch gedacht das alles soweit richtig ist.


PS: Hotmail ist der Vorgänger von Outlook.com und hat die selben SMTP Server ;)

Re: Email mit Outlook.com

Verfasst: Di 9. Okt 2012, 23:06
von feissmaik
Die aktuelle TLS Version ist 1.2 also ist es nicht mehr SSL3 (TLS1.0) ... Somit ist die Aussage das TLS etwas anderes ist als SSL durchaus korrekt

Wie gesagt vermute ich das du nicht @outlook.com sondern @hotmail.com o.ä. als login nutzen müsstest

Ansonsten versuch es mit " -o tls=yes " , also ungefähr so:

Code: Alles auswählen

sendEmail -f XXX@outlook.com -t YYY@gmail.com -u TEST -m TESTESTESTEST -s ssl://smtp.live.com:587 -xu XXX@outlook.com -xp ZzZzZzZ -o tls=yes
Siehe dazu:

Code: Alles auswählen

sendemail --help misc
Um genauere Details angezeigt zu kriegen kannst du auch noch den Parameter " -v " hinzufügen

Re: Email mit Outlook.com

Verfasst: Di 9. Okt 2012, 23:39
von ediik

Code: Alles auswählen

ERROR => No TLS support!  SendEmail can't load required libraries. (try installing Net::SSLeay and IO::Socket::SSL)

mit -o tls=yes

Re: Email mit Outlook.com

Verfasst: Mi 10. Okt 2012, 00:04
von feissmaik
-> apt-cache search perl io socket ssl

-> apt-get install libnet-ssleay-perl libio-socket-ssl-perl