-rw-r--r-- | kmicromail/libmailwrapper/smtpwrapper.cpp | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/kmicromail/libmailwrapper/smtpwrapper.cpp b/kmicromail/libmailwrapper/smtpwrapper.cpp index 448a2e9..a6c12e4 100644 --- a/kmicromail/libmailwrapper/smtpwrapper.cpp +++ b/kmicromail/libmailwrapper/smtpwrapper.cpp | |||
@@ -221,2 +221,3 @@ void SMTPwrapper::connect_server() | |||
221 | } | 221 | } |
222 | //m_smtp->auth = MAILSMTP_AUTH_LOGIN; | ||
222 | 223 | ||
@@ -254,9 +255,6 @@ void SMTPwrapper::connect_server() | |||
254 | } else { | 255 | } else { |
255 | err = mailesmtp_ehlo(m_smtp); | 256 | qDebug("Smpt: Using TLS "); |
256 | if ( err != MAILSMTP_NO_ERROR ) | ||
257 | result = 0; | ||
258 | else | ||
259 | qDebug("Smpt: Using TLS "); | ||
260 | } | 257 | } |
261 | } | 258 | } |
259 | |||
262 | //qDebug("mailesmtp_ehlo %d ",err ); | 260 | //qDebug("mailesmtp_ehlo %d ",err ); |
@@ -265,4 +263,16 @@ void SMTPwrapper::connect_server() | |||
265 | failuretext = i18n("Error init SMTP tls:%1").arg(mailsmtpError(err)); | 263 | failuretext = i18n("Error init SMTP tls:%1").arg(mailsmtpError(err)); |
264 | } | ||
265 | if ( mailesmtp_ehlo(m_smtp) != MAILSMTP_NO_ERROR ) { | ||
266 | qDebug("Smpt: ehlo failed "); | ||
267 | result = 0; | ||
266 | } | 268 | } |
267 | 269 | else { | |
270 | //qDebug("Smpt: auth is %d -- %d %d",m_smtp->auth, MAILSMTP_AUTH_LOGIN, MAILSMTP_AUTH_PLAIN); | ||
271 | if ( m_smtp->auth & MAILSMTP_AUTH_LOGIN && m_smtp->auth & MAILSMTP_AUTH_PLAIN ) { | ||
272 | qDebug("Smpt: Using MAILSMTP_AUTH_LOGIN "); | ||
273 | m_smtp->auth -= MAILSMTP_AUTH_PLAIN; | ||
274 | //qDebug("Smpt: auth is %d -- %d %d",m_smtp->auth, MAILSMTP_AUTH_LOGIN, MAILSMTP_AUTH_PLAIN); | ||
275 | } | ||
276 | } | ||
277 | |||
268 | if (result==1 && m_SmtpAccount->getLogin() ) { | 278 | if (result==1 && m_SmtpAccount->getLogin() ) { |