From 57445759ee3c26dd03aa8292be3187685a424c1d Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Mon, 6 Mar 2017 20:22:47 +0100 Subject: Get mailtransport with kolabnow to work when connecting to smtps:// the command will silently fail, with wireshark spewing out a cryptic "5.5.2 command not recognized". The magic commandline (that works) is: curl smtp://smtp.kolabnow.com:587 -v --mail-from "$USER" --mail-rcpt "$USER" --ssl -u $USER.ch:$PW -T alternative.mbox -k --anyauth --- examples/mailtransportresource/mailtransport.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/mailtransportresource/mailtransport.h') diff --git a/examples/mailtransportresource/mailtransport.h b/examples/mailtransportresource/mailtransport.h index 3ef4a6d..662fdc9 100644 --- a/examples/mailtransportresource/mailtransport.h +++ b/examples/mailtransportresource/mailtransport.h @@ -26,8 +26,8 @@ namespace MailTransport { enum Option { - UseTls, - VerifyPeers + UseTls = 1, + VerifyPeers = 2 }; Q_DECLARE_FLAGS(Options, Option); -- cgit v1.2.3