-rw-r--r-- | bin/kdepim/WhatsNew.txt | 7 | ||||
-rw-r--r-- | kmicromail/libmailwrapper/smtpwrapper.cpp | 13 |
2 files changed, 14 insertions, 6 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index b44d6d1..6c1f664 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -1,34 +1,41 @@ | |||
1 | Info about the changes in new versions of KDE-Pim/Pi | 1 | Info about the changes in new versions of KDE-Pim/Pi |
2 | 2 | ||
3 | ********** VERSION 2.2.5 ************ | ||
4 | |||
5 | Bugfixes in KO/Pi, KA/Pi and OM/Pi. | ||
6 | Added possibility to disable auto saving in KO/Pi. | ||
7 | How to disable it? Good question! Next question, please? | ||
8 | |||
9 | |||
3 | ********** VERSION 2.2.4 ************ | 10 | ********** VERSION 2.2.4 ************ |
4 | 11 | ||
5 | KO/Pi alarm applet: Made font smaller and added a dealy before starting KO/Pi to avoid problems accessing data storage when an alarm did wake up the Z. | 12 | KO/Pi alarm applet: Made font smaller and added a dealy before starting KO/Pi to avoid problems accessing data storage when an alarm did wake up the Z. |
6 | Added 3 sec notification about a started timer. | 13 | Added 3 sec notification about a started timer. |
7 | 14 | ||
8 | KO/Pi: | 15 | KO/Pi: |
9 | Added export option for all data to File->Export menu. | 16 | Added export option for all data to File->Export menu. |
10 | Better management if a save error occours. | 17 | Better management if a save error occours. |
11 | Added 15 sec delay in automatic saving when Z wake up from suspend and the automatic save timer did expire - to avoid problems accessing data storage directly after wake up. | 18 | Added 15 sec delay in automatic saving when Z wake up from suspend and the automatic save timer did expire - to avoid problems accessing data storage directly after wake up. |
12 | Fix for displaying month names of an utf8 translated language (like Russian). I hope a Russian version of KO/Pi will be available soon. | 19 | Fix for displaying month names of an utf8 translated language (like Russian). I hope a Russian version of KO/Pi will be available soon. |
13 | 20 | ||
14 | Added duration info about multiday events. | 21 | Added duration info about multiday events. |
15 | Changed behaviour of "Set complete" in Todo viewer: Now Todo viewer closes not automatically. | 22 | Changed behaviour of "Set complete" in Todo viewer: Now Todo viewer closes not automatically. |
16 | 23 | ||
17 | KA/Pi: | 24 | KA/Pi: |
18 | Added for vCard import the option to import contact data in Latin1 format. | 25 | Added for vCard import the option to import contact data in Latin1 format. |
19 | 26 | ||
20 | ********** VERSION 2.2.3 ************ | 27 | ********** VERSION 2.2.3 ************ |
21 | 28 | ||
22 | KO/Pi: | 29 | KO/Pi: |
23 | Fixed a problem with (non empty) exception dates in the exception date edit dialog of recurring events for newly created events. | 30 | Fixed a problem with (non empty) exception dates in the exception date edit dialog of recurring events for newly created events. |
24 | 31 | ||
25 | Fixed usability problem in KA/Pi: | 32 | Fixed usability problem in KA/Pi: |
26 | Now searching works for "all phone numbers and all addresses" if "all fields" is selected as search option. | 33 | Now searching works for "all phone numbers and all addresses" if "all fields" is selected as search option. |
27 | 34 | ||
28 | Changed some behaviour in OM/Pi mail management to make it more usable. | 35 | Changed some behaviour in OM/Pi mail management to make it more usable. |
29 | 36 | ||
30 | 37 | ||
31 | ********** VERSION 2.2.2 ************ | 38 | ********** VERSION 2.2.2 ************ |
32 | 39 | ||
33 | KO/Pi: | 40 | KO/Pi: |
34 | Fixed a problem with the sort order of last modified date in list view. | 41 | Fixed a problem with the sort order of last modified date in list view. |
diff --git a/kmicromail/libmailwrapper/smtpwrapper.cpp b/kmicromail/libmailwrapper/smtpwrapper.cpp index a6c12e4..7c813cc 100644 --- a/kmicromail/libmailwrapper/smtpwrapper.cpp +++ b/kmicromail/libmailwrapper/smtpwrapper.cpp | |||
@@ -233,76 +233,77 @@ void SMTPwrapper::connect_server() | |||
233 | if ( err != MAILSMTP_NO_ERROR ) { | 233 | if ( err != MAILSMTP_NO_ERROR ) { |
234 | qDebug("Error init SMTP connection" ); | 234 | qDebug("Error init SMTP connection" ); |
235 | failuretext = i18n("Error init SMTP connection:\n%1").arg(mailsmtpError(err)); | 235 | failuretext = i18n("Error init SMTP connection:\n%1").arg(mailsmtpError(err)); |
236 | result = 0; | 236 | result = 0; |
237 | } | 237 | } |
238 | 238 | ||
239 | qDebug("SMTP connection inited "); | 239 | qDebug("SMTP connection inited "); |
240 | /* switch to tls after init 'cause there it will send the ehlo */ | 240 | /* switch to tls after init 'cause there it will send the ehlo */ |
241 | if (result) { | 241 | if (result) { |
242 | err = mailsmtp_init( m_smtp ); | 242 | err = mailsmtp_init( m_smtp ); |
243 | if (err != MAILSMTP_NO_ERROR) { | 243 | if (err != MAILSMTP_NO_ERROR) { |
244 | result = 0; | 244 | result = 0; |
245 | qDebug("Error init SMTP connection "); | 245 | qDebug("Error init SMTP connection "); |
246 | failuretext = i18n("Error init SMTP connection:\n%1").arg(mailsmtpError(err)); | 246 | failuretext = i18n("Error init SMTP connection:\n%1").arg(mailsmtpError(err)); |
247 | } | 247 | } |
248 | } | 248 | } |
249 | if (result && try_tls) { | 249 | if (result && try_tls) { |
250 | qDebug("Smpt: Try TLS... "); | 250 | qDebug("Smpt: Try TLS... "); |
251 | err = start_smtp_tls(); | 251 | err = start_smtp_tls(); |
252 | if (err != MAILSMTP_NO_ERROR) { | 252 | if (err != MAILSMTP_NO_ERROR) { |
253 | try_tls = false; | 253 | try_tls = false; |
254 | qDebug("Smpt: No TLS possible "); | 254 | qDebug("Smpt: No TLS possible "); |
255 | } else { | 255 | } else { |
256 | qDebug("Smpt: Using TLS "); | 256 | qDebug("Smpt: Using TLS "); |
257 | } | 257 | } |
258 | } | 258 | } |
259 | 259 | ||
260 | //qDebug("mailesmtp_ehlo %d ",err ); | 260 | //qDebug("mailesmtp_ehlo %d ",err ); |
261 | if (!try_tls && force_tls) { | 261 | if (!try_tls && force_tls) { |
262 | result = 0; | 262 | result = 0; |
263 | failuretext = i18n("Error init SMTP tls:%1").arg(mailsmtpError(err)); | 263 | failuretext = i18n("Error init SMTP tls:%1").arg(mailsmtpError(err)); |
264 | } | 264 | } |
265 | if ( mailesmtp_ehlo(m_smtp) != MAILSMTP_NO_ERROR ) { | 265 | //LR 05-10-22 : qDebug("no elo any more "); |
266 | qDebug("Smpt: ehlo failed "); | 266 | // if ( false /*mailesmtp_ehlo(m_smtp) != MAILSMTP_NO_ERROR */) { |
267 | result = 0; | 267 | // qDebug("Smpt: ehlo failed "); |
268 | } | 268 | // result = 0; |
269 | else { | 269 | // } |
270 | // else { | ||
270 | //qDebug("Smpt: auth is %d -- %d %d",m_smtp->auth, MAILSMTP_AUTH_LOGIN, MAILSMTP_AUTH_PLAIN); | 271 | //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 | if ( m_smtp->auth & MAILSMTP_AUTH_LOGIN && m_smtp->auth & MAILSMTP_AUTH_PLAIN ) { |
272 | qDebug("Smpt: Using MAILSMTP_AUTH_LOGIN "); | 273 | qDebug("Smpt: Using MAILSMTP_AUTH_LOGIN "); |
273 | m_smtp->auth -= MAILSMTP_AUTH_PLAIN; | 274 | m_smtp->auth -= MAILSMTP_AUTH_PLAIN; |
274 | //qDebug("Smpt: auth is %d -- %d %d",m_smtp->auth, MAILSMTP_AUTH_LOGIN, MAILSMTP_AUTH_PLAIN); | 275 | //qDebug("Smpt: auth is %d -- %d %d",m_smtp->auth, MAILSMTP_AUTH_LOGIN, MAILSMTP_AUTH_PLAIN); |
275 | } | 276 | } |
276 | } | 277 | // } |
277 | 278 | ||
278 | if (result==1 && m_SmtpAccount->getLogin() ) { | 279 | if (result==1 && m_SmtpAccount->getLogin() ) { |
279 | ; // odebug << "smtp with auth" << oendl; | 280 | ; // odebug << "smtp with auth" << oendl; |
280 | if ( m_SmtpAccount->getUser().isEmpty() || m_SmtpAccount->getPassword().isEmpty() ) { | 281 | if ( m_SmtpAccount->getUser().isEmpty() || m_SmtpAccount->getPassword().isEmpty() ) { |
281 | // get'em | 282 | // get'em |
282 | LoginDialog login( m_SmtpAccount->getUser(), | 283 | LoginDialog login( m_SmtpAccount->getUser(), |
283 | m_SmtpAccount->getPassword(), NULL, 0, true ); | 284 | m_SmtpAccount->getPassword(), NULL, 0, true ); |
284 | login.show(); | 285 | login.show(); |
285 | if ( QDialog::Accepted == login.exec() ) { | 286 | if ( QDialog::Accepted == login.exec() ) { |
286 | // ok | 287 | // ok |
287 | user = login.getUser(); | 288 | user = login.getUser(); |
288 | pass = login.getPassword(); | 289 | pass = login.getPassword(); |
289 | } else { | 290 | } else { |
290 | result = 0; | 291 | result = 0; |
291 | failuretext=i18n("Login aborted - \nstoring mail to localfolder"); | 292 | failuretext=i18n("Login aborted - \nstoring mail to localfolder"); |
292 | } | 293 | } |
293 | } else { | 294 | } else { |
294 | user = m_SmtpAccount->getUser(); | 295 | user = m_SmtpAccount->getUser(); |
295 | pass = m_SmtpAccount->getPassword(); | 296 | pass = m_SmtpAccount->getPassword(); |
296 | } | 297 | } |
297 | ; // odebug << "session->auth: " << m_smtp->auth << "" << oendl; | 298 | ; // odebug << "session->auth: " << m_smtp->auth << "" << oendl; |
298 | if (result) { | 299 | if (result) { |
299 | err = mailsmtp_auth( m_smtp, (char*)user.latin1(), (char*)pass.latin1() ); | 300 | err = mailsmtp_auth( m_smtp, (char*)user.latin1(), (char*)pass.latin1() ); |
300 | if ( err == MAILSMTP_NO_ERROR ) { | 301 | if ( err == MAILSMTP_NO_ERROR ) { |
301 | qDebug("Smtp authentification ok "); | 302 | qDebug("Smtp authentification ok "); |
302 | } else { | 303 | } else { |
303 | failuretext = i18n("Authentification failed"); | 304 | failuretext = i18n("Authentification failed"); |
304 | result = 0; | 305 | result = 0; |
305 | } | 306 | } |
306 | } | 307 | } |
307 | } | 308 | } |
308 | if ( result == 0 ) { | 309 | if ( result == 0 ) { |