Fixed an amazingly moronic mistake that kept anything from working with SSL support compiled in.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10471 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -265,7 +265,7 @@ SMTPProtocol::Open(const char *address, int port, bool esmtp)
|
|||||||
|
|
||||||
if (port <= 0)
|
if (port <= 0)
|
||||||
#ifdef USESSL
|
#ifdef USESSL
|
||||||
port = use_ssl ? 25 : 465;
|
port = use_ssl ? 465 : 25;
|
||||||
#else
|
#else
|
||||||
port = 25;
|
port = 25;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user