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)
|
||||
#ifdef USESSL
|
||||
port = use_ssl ? 25 : 465;
|
||||
port = use_ssl ? 465 : 25;
|
||||
#else
|
||||
port = 25;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user