Author |
|
emacarie Newbie
Joined: 02 April 2010
Online Status: Offline Posts: 4
|
Posted: 02 April 2010 at 11:52am | IP Logged
|
|
|
The SslStartupMode is not working with a
Mailbee.Imap or Mailbee.Pop3 connection in
certain situations.
I am trying to connect to a server on port 995
using Pop3 Without SSL. Even though I
set the SslMode to Manual and I never call
StartTls, the Mailbee libraries still try to
connect using SSL . According to the
documentation when the SslMode is Manual the
connection will not use SSL unless I call
StartTls().
I use the below code to try to make a Pop3
connection to a server called "server" and port
995. I do not want to use SSL however.
_pop3Conn = new Pop3();
_pop3Conn.SslMode =
MailBee.Security.SslStartupMode.Manual;
_pop3Conn.Connect("server", 995);
After the connection is made the value of
_pop3Conn.IsSslConnection
is true.
I need Mailbee to make the above connection
without using ssl. Is this possible ?
Thank you.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 02 April 2010 at 12:43pm | IP Logged
|
|
|
Try setting this option to false.
Does it help?
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
emacarie Newbie
Joined: 02 April 2010
Online Status: Offline Posts: 4
|
Posted: 02 April 2010 at 1:47pm | IP Logged
|
|
|
Thank you ! That was exactly the setting I
needed. Much appreciated.
|
Back to Top |
|
|