author | harlekin <harlekin> | 2003-12-10 11:44:00 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-12-10 11:44:00 (UTC) |
commit | 9f974b45ef133d807f8441d84cfebe9b51865499 (patch) (side-by-side diff) | |
tree | 85b5f286516f79d425e7769044e0a7b20848d529 | |
parent | 434db5193380185cc1b6347ff5882ad558f401d4 (diff) | |
download | opie-9f974b45ef133d807f8441d84cfebe9b51865499.zip opie-9f974b45ef133d807f8441d84cfebe9b51865499.tar.gz opie-9f974b45ef133d807f8441d84cfebe9b51865499.tar.bz2 |
added ssl connection support for pop3
-rw-r--r-- | noncore/net/mail/libmailwrapper/pop3wrapper.cpp | 5 | ||||
-rw-r--r-- | noncore/net/mail/pop3wrapper.cpp | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/noncore/net/mail/libmailwrapper/pop3wrapper.cpp b/noncore/net/mail/libmailwrapper/pop3wrapper.cpp index 6decb6a..1538d50 100644 --- a/noncore/net/mail/libmailwrapper/pop3wrapper.cpp +++ b/noncore/net/mail/libmailwrapper/pop3wrapper.cpp @@ -73,7 +73,12 @@ void POP3wrapper::login() m_pop3 = mailpop3_new( 200, &pop3_progress ); // connect + if (account->getSSL()) { + err = mailpop3_ssl_connect( m_pop3, (char*)server, port ); + } else { err = mailpop3_socket_connect( m_pop3, (char *) server, port ); + } + if ( err != MAILPOP3_NO_ERROR ) { qDebug( "pop3: error connecting to %s\n reason: %s", server, m_pop3->response ); diff --git a/noncore/net/mail/pop3wrapper.cpp b/noncore/net/mail/pop3wrapper.cpp index 6decb6a..1538d50 100644 --- a/noncore/net/mail/pop3wrapper.cpp +++ b/noncore/net/mail/pop3wrapper.cpp @@ -73,7 +73,12 @@ void POP3wrapper::login() m_pop3 = mailpop3_new( 200, &pop3_progress ); // connect + if (account->getSSL()) { + err = mailpop3_ssl_connect( m_pop3, (char*)server, port ); + } else { err = mailpop3_socket_connect( m_pop3, (char *) server, port ); + } + if ( err != MAILPOP3_NO_ERROR ) { qDebug( "pop3: error connecting to %s\n reason: %s", server, m_pop3->response ); |