-rw-r--r-- | kmicromail/accountview.cpp | 5 | ||||
-rw-r--r-- | kmicromail/libmailwrapper/smtpwrapper.cpp | 12 | ||||
-rw-r--r-- | kmicromail/opiemail.cpp | 5 |
3 files changed, 15 insertions, 7 deletions
diff --git a/kmicromail/accountview.cpp b/kmicromail/accountview.cpp index 3ad3e9b..e9be224 100644 --- a/kmicromail/accountview.cpp +++ b/kmicromail/accountview.cpp | |||
@@ -68,98 +68,101 @@ void AccountView::populate( QList<Account> list ) | |||
68 | for ( it = list.first(); it; it = list.next() ) | 68 | for ( it = list.first(); it; it = list.next() ) |
69 | { | 69 | { |
70 | if ( it->getType() == MAILLIB::A_IMAP ) | 70 | if ( it->getType() == MAILLIB::A_IMAP ) |
71 | { | 71 | { |
72 | IMAPaccount *imap = static_cast<IMAPaccount *>(it); | 72 | IMAPaccount *imap = static_cast<IMAPaccount *>(it); |
73 | imapAccounts.append(new IMAPviewItem( imap, this )); | 73 | imapAccounts.append(new IMAPviewItem( imap, this )); |
74 | } | 74 | } |
75 | else if ( it->getType() == MAILLIB::A_POP3 ) | 75 | else if ( it->getType() == MAILLIB::A_POP3 ) |
76 | { | 76 | { |
77 | POP3account *pop3 = static_cast<POP3account *>(it); | 77 | POP3account *pop3 = static_cast<POP3account *>(it); |
78 | /* must not be hold 'cause it isn't required */ | 78 | /* must not be hold 'cause it isn't required */ |
79 | (void) new POP3viewItem( pop3, this ); | 79 | (void) new POP3viewItem( pop3, this ); |
80 | } | 80 | } |
81 | else if ( it->getType() == MAILLIB::A_NNTP ) | 81 | else if ( it->getType() == MAILLIB::A_NNTP ) |
82 | { | 82 | { |
83 | NNTPaccount *nntp = static_cast<NNTPaccount *>(it); | 83 | NNTPaccount *nntp = static_cast<NNTPaccount *>(it); |
84 | /* must not be hold 'cause it isn't required */ | 84 | /* must not be hold 'cause it isn't required */ |
85 | (void) new NNTPviewItem( nntp, this ); | 85 | (void) new NNTPviewItem( nntp, this ); |
86 | } | 86 | } |
87 | } | 87 | } |
88 | } | 88 | } |
89 | 89 | ||
90 | void AccountView::refresh(QListViewItem *item) | 90 | void AccountView::refresh(QListViewItem *item) |
91 | { | 91 | { |
92 | if ( item ) | 92 | if ( item ) |
93 | { | 93 | { |
94 | m_currentItem = item; | 94 | m_currentItem = item; |
95 | QValueList<RecMailP> headerlist; | 95 | QValueList<RecMailP> headerlist; |
96 | AccountViewItem *view = static_cast<AccountViewItem *>(item); | 96 | AccountViewItem *view = static_cast<AccountViewItem *>(item); |
97 | view->refresh(headerlist); | 97 | view->refresh(headerlist); |
98 | emit refreshMailview(headerlist); | 98 | emit refreshMailview(headerlist); |
99 | } | 99 | } |
100 | } | 100 | } |
101 | void AccountView::refreshOutgoing() | 101 | void AccountView::refreshOutgoing() |
102 | { | 102 | { |
103 | m_currentItem = currentItem(); | 103 | m_currentItem = currentItem(); |
104 | if ( !m_currentItem ) return; | 104 | if ( !m_currentItem ) return; |
105 | AccountViewItem *view = static_cast<AccountViewItem *>(m_currentItem); | 105 | AccountViewItem *view = static_cast<AccountViewItem *>(m_currentItem); |
106 | QString bName = view->getFolder()->getDisplayName(); | 106 | QString bName = view->getFolder()->getDisplayName(); |
107 | if (bName.startsWith("/")&&bName.length()>1) | 107 | if (bName.startsWith("/")&&bName.length()>1) |
108 | { | 108 | { |
109 | bName.replace(0,1,""); | 109 | bName.replace(0,1,""); |
110 | } | 110 | } |
111 | int pos = bName.findRev("/"); | 111 | int pos = bName.findRev("/"); |
112 | if (pos > 0) | 112 | if (pos > 0) |
113 | { | 113 | { |
114 | bName.replace(0,pos+1,""); | 114 | bName.replace(0,pos+1,""); |
115 | } | 115 | } |
116 | if ( bName.lower() == "outgoing" ) | 116 | //qDebug("name *%s* ",bName.lower().latin1() ); |
117 | if ( bName.lower() == "outgoing" || bName.lower() == "sent" || bName.lower() == "sendfailed" ) { | ||
117 | refreshCurrent(); | 118 | refreshCurrent(); |
119 | // qDebug("refresh "); | ||
120 | } | ||
118 | } | 121 | } |
119 | 122 | ||
120 | void AccountView::refreshCurrent() | 123 | void AccountView::refreshCurrent() |
121 | { | 124 | { |
122 | m_currentItem = currentItem(); | 125 | m_currentItem = currentItem(); |
123 | if ( !m_currentItem ) return; | 126 | if ( !m_currentItem ) return; |
124 | QValueList<RecMailP> headerlist; | 127 | QValueList<RecMailP> headerlist; |
125 | AccountViewItem *view = static_cast<AccountViewItem *>(m_currentItem); | 128 | AccountViewItem *view = static_cast<AccountViewItem *>(m_currentItem); |
126 | view->refresh(headerlist); | 129 | view->refresh(headerlist); |
127 | emit refreshMailview(headerlist); | 130 | emit refreshMailview(headerlist); |
128 | } | 131 | } |
129 | 132 | ||
130 | void AccountView::refreshAll() | 133 | void AccountView::refreshAll() |
131 | { | 134 | { |
132 | } | 135 | } |
133 | 136 | ||
134 | RecBodyP AccountView::fetchBody(const RecMailP&aMail) | 137 | RecBodyP AccountView::fetchBody(const RecMailP&aMail) |
135 | { | 138 | { |
136 | QListViewItem*item = selectedItem (); | 139 | QListViewItem*item = selectedItem (); |
137 | if (!item) return new RecBody(); | 140 | if (!item) return new RecBody(); |
138 | AccountViewItem *view = static_cast<AccountViewItem *>(item); | 141 | AccountViewItem *view = static_cast<AccountViewItem *>(item); |
139 | return view->fetchBody(aMail); | 142 | return view->fetchBody(aMail); |
140 | } | 143 | } |
141 | 144 | ||
142 | void AccountView::setupFolderselect(Selectstore*sels) | 145 | void AccountView::setupFolderselect(Selectstore*sels) |
143 | { | 146 | { |
144 | 147 | ||
145 | #ifndef DESKTOP_VERSION | 148 | #ifndef DESKTOP_VERSION |
146 | sels->showMaximized(); | 149 | sels->showMaximized(); |
147 | #else | 150 | #else |
148 | sels->show(); | 151 | sels->show(); |
149 | #endif | 152 | #endif |
150 | QStringList sFolders; | 153 | QStringList sFolders; |
151 | unsigned int i = 0; | 154 | unsigned int i = 0; |
152 | for (i=0; i < mhAccounts.count();++i) | 155 | for (i=0; i < mhAccounts.count();++i) |
153 | { | 156 | { |
154 | mhAccounts[i]->refresh(false); | 157 | mhAccounts[i]->refresh(false); |
155 | sFolders = mhAccounts[i]->subFolders(); | 158 | sFolders = mhAccounts[i]->subFolders(); |
156 | sels->addAccounts(mhAccounts[i]->getWrapper(),sFolders); | 159 | sels->addAccounts(mhAccounts[i]->getWrapper(),sFolders); |
157 | } | 160 | } |
158 | for (i=0; i < imapAccounts.count();++i) | 161 | for (i=0; i < imapAccounts.count();++i) |
159 | { | 162 | { |
160 | if (imapAccounts[i]->offline()) | 163 | if (imapAccounts[i]->offline()) |
161 | continue; | 164 | continue; |
162 | imapAccounts[i]->refreshFolders(false); | 165 | imapAccounts[i]->refreshFolders(false); |
163 | sels->addAccounts(imapAccounts[i]->getWrapper(),imapAccounts[i]->subFolders()); | 166 | sels->addAccounts(imapAccounts[i]->getWrapper(),imapAccounts[i]->subFolders()); |
164 | } | 167 | } |
165 | } | 168 | } |
diff --git a/kmicromail/libmailwrapper/smtpwrapper.cpp b/kmicromail/libmailwrapper/smtpwrapper.cpp index 24f4786..5096f67 100644 --- a/kmicromail/libmailwrapper/smtpwrapper.cpp +++ b/kmicromail/libmailwrapper/smtpwrapper.cpp | |||
@@ -1,94 +1,95 @@ | |||
1 | #include "smtpwrapper.h" | 1 | #include "smtpwrapper.h" |
2 | #include "mailwrapper.h" | 2 | #include "mailwrapper.h" |
3 | #include "abstractmail.h" | 3 | #include "abstractmail.h" |
4 | #include "logindialog.h" | 4 | #include "logindialog.h" |
5 | #include "mailtypes.h" | 5 | #include "mailtypes.h" |
6 | #include "sendmailprogress.h" | 6 | #include "sendmailprogress.h" |
7 | 7 | ||
8 | //#include <opie2/odebug.h> | 8 | //#include <opie2/odebug.h> |
9 | //#include <qt.h> | 9 | //#include <qt.h> |
10 | #include <qapplication.h> | 10 | #include <qapplication.h> |
11 | #include <qmessagebox.h> | 11 | #include <qmessagebox.h> |
12 | #include <stdlib.h> | 12 | #include <stdlib.h> |
13 | #ifndef DESKTOP_VERSION | 13 | #ifndef DESKTOP_VERSION |
14 | //#include <qpe/config.h> | 14 | //#include <qpe/config.h> |
15 | #include <qpe/qcopenvelope_qws.h> | 15 | #include <qpe/qcopenvelope_qws.h> |
16 | #endif | 16 | #endif |
17 | #include <libetpan/libetpan.h> | 17 | #include <libetpan/libetpan.h> |
18 | #include <klocale.h> | 18 | #include <klocale.h> |
19 | #include <kglobal.h> | 19 | #include <kglobal.h> |
20 | #include <kconfig.h> | 20 | #include <kconfig.h> |
21 | 21 | ||
22 | 22 | ||
23 | using namespace Opie::Core; | 23 | using namespace Opie::Core; |
24 | progressMailSend*SMTPwrapper::sendProgress = 0; | 24 | progressMailSend*SMTPwrapper::sendProgress = 0; |
25 | 25 | ||
26 | SMTPwrapper::SMTPwrapper(SMTPaccount * aSmtp ) | 26 | SMTPwrapper::SMTPwrapper(SMTPaccount * aSmtp ) |
27 | : Generatemail() | 27 | : Generatemail() |
28 | { | 28 | { |
29 | m_SmtpAccount = aSmtp; | 29 | m_SmtpAccount = aSmtp; |
30 | KConfig cfg( locateLocal("config", "kopiemailrc" ) ); | 30 | KConfig cfg( locateLocal("config", "kopiemailrc" ) ); |
31 | cfg.setGroup( "Status" ); | 31 | cfg.setGroup( "Status" ); |
32 | m_queuedMail = cfg.readNumEntry( "outgoing", 0 ); | 32 | m_queuedMail = cfg.readNumEntry( "outgoing", 0 ); |
33 | emit queuedMails( m_queuedMail ); | 33 | emit queuedMails( m_queuedMail ); |
34 | connect( this, SIGNAL( queuedMails(int) ), this, SLOT( emitQCop(int) ) ); | 34 | connect( this, SIGNAL( queuedMails(int) ), this, SLOT( emitQCop(int) ) ); |
35 | m_smtp = 0; | 35 | m_smtp = 0; |
36 | } | 36 | } |
37 | 37 | ||
38 | SMTPwrapper::~SMTPwrapper() | 38 | SMTPwrapper::~SMTPwrapper() |
39 | { | 39 | { |
40 | disc_server(); | 40 | disc_server(); |
41 | } | 41 | } |
42 | 42 | ||
43 | void SMTPwrapper::emitQCop( int queued ) { | 43 | void SMTPwrapper::emitQCop( int queued ) { |
44 | #ifndef DESKTOP_VERSION | 44 | #ifndef DESKTOP_VERSION |
45 | QCopEnvelope env( "QPE/Pim", "outgoingMails(int)" ); | 45 | // LR : not used in kde-pim |
46 | env << queued; | 46 | //QCopEnvelope env( "QPE/Pim", "outgoingMails(int)" ); |
47 | //env << queued; | ||
47 | #endif | 48 | #endif |
48 | } | 49 | } |
49 | 50 | ||
50 | QString SMTPwrapper::mailsmtpError( int errnum ) { | 51 | QString SMTPwrapper::mailsmtpError( int errnum ) { |
51 | switch ( errnum ) { | 52 | switch ( errnum ) { |
52 | case MAILSMTP_NO_ERROR: | 53 | case MAILSMTP_NO_ERROR: |
53 | return i18n( "No error" ); | 54 | return i18n( "No error" ); |
54 | case MAILSMTP_ERROR_UNEXPECTED_CODE: | 55 | case MAILSMTP_ERROR_UNEXPECTED_CODE: |
55 | return i18n( "Unexpected error code" ); | 56 | return i18n( "Unexpected error code" ); |
56 | case MAILSMTP_ERROR_SERVICE_NOT_AVAILABLE: | 57 | case MAILSMTP_ERROR_SERVICE_NOT_AVAILABLE: |
57 | return i18n( "Service not available" ); | 58 | return i18n( "Service not available" ); |
58 | case MAILSMTP_ERROR_STREAM: | 59 | case MAILSMTP_ERROR_STREAM: |
59 | return i18n( "Stream error" ); | 60 | return i18n( "Stream error" ); |
60 | case MAILSMTP_ERROR_HOSTNAME: | 61 | case MAILSMTP_ERROR_HOSTNAME: |
61 | return i18n( "gethostname() failed" ); | 62 | return i18n( "gethostname() failed" ); |
62 | case MAILSMTP_ERROR_NOT_IMPLEMENTED: | 63 | case MAILSMTP_ERROR_NOT_IMPLEMENTED: |
63 | return i18n( "Not implemented" ); | 64 | return i18n( "Not implemented" ); |
64 | case MAILSMTP_ERROR_ACTION_NOT_TAKEN: | 65 | case MAILSMTP_ERROR_ACTION_NOT_TAKEN: |
65 | return i18n( "Error, action not taken" ); | 66 | return i18n( "Error, action not taken" ); |
66 | case MAILSMTP_ERROR_EXCEED_STORAGE_ALLOCATION: | 67 | case MAILSMTP_ERROR_EXCEED_STORAGE_ALLOCATION: |
67 | return i18n( "Data exceeds storage allocation" ); | 68 | return i18n( "Data exceeds storage allocation" ); |
68 | case MAILSMTP_ERROR_IN_PROCESSING: | 69 | case MAILSMTP_ERROR_IN_PROCESSING: |
69 | return i18n( "Error in processing" ); | 70 | return i18n( "Error in processing" ); |
70 | case MAILSMTP_ERROR_STARTTLS_NOT_SUPPORTED: | 71 | case MAILSMTP_ERROR_STARTTLS_NOT_SUPPORTED: |
71 | return i18n( "Starttls not supported" ); | 72 | return i18n( "Starttls not supported" ); |
72 | // case MAILSMTP_ERROR_INSUFFISANT_SYSTEM_STORAGE: | 73 | // case MAILSMTP_ERROR_INSUFFISANT_SYSTEM_STORAGE: |
73 | // return i18n( "Insufficient system storage" ); | 74 | // return i18n( "Insufficient system storage" ); |
74 | case MAILSMTP_ERROR_MAILBOX_UNAVAILABLE: | 75 | case MAILSMTP_ERROR_MAILBOX_UNAVAILABLE: |
75 | return i18n( "Mailbox unavailable" ); | 76 | return i18n( "Mailbox unavailable" ); |
76 | case MAILSMTP_ERROR_MAILBOX_NAME_NOT_ALLOWED: | 77 | case MAILSMTP_ERROR_MAILBOX_NAME_NOT_ALLOWED: |
77 | return i18n( "Mailbox name not allowed" ); | 78 | return i18n( "Mailbox name not allowed" ); |
78 | case MAILSMTP_ERROR_BAD_SEQUENCE_OF_COMMAND: | 79 | case MAILSMTP_ERROR_BAD_SEQUENCE_OF_COMMAND: |
79 | return i18n( "Bad command sequence" ); | 80 | return i18n( "Bad command sequence" ); |
80 | case MAILSMTP_ERROR_USER_NOT_LOCAL: | 81 | case MAILSMTP_ERROR_USER_NOT_LOCAL: |
81 | return i18n( "User not local" ); | 82 | return i18n( "User not local" ); |
82 | case MAILSMTP_ERROR_TRANSACTION_FAILED: | 83 | case MAILSMTP_ERROR_TRANSACTION_FAILED: |
83 | return i18n( "Transaction failed" ); | 84 | return i18n( "Transaction failed" ); |
84 | case MAILSMTP_ERROR_MEMORY: | 85 | case MAILSMTP_ERROR_MEMORY: |
85 | return i18n( "Memory error" ); | 86 | return i18n( "Memory error" ); |
86 | case MAILSMTP_ERROR_CONNECTION_REFUSED: | 87 | case MAILSMTP_ERROR_CONNECTION_REFUSED: |
87 | return i18n( "Connection refused" ); | 88 | return i18n( "Connection refused" ); |
88 | default: | 89 | default: |
89 | return i18n( "Unknown error code" ); | 90 | return i18n( "Unknown error code" ); |
90 | } | 91 | } |
91 | } | 92 | } |
92 | 93 | ||
93 | 94 | ||
94 | void SMTPwrapper::progress( size_t current, size_t maximum ) { | 95 | void SMTPwrapper::progress( size_t current, size_t maximum ) { |
@@ -396,75 +397,74 @@ bool SMTPwrapper::flushOutbox() { | |||
396 | ; // odebug << "Sending the queue" << oendl; | 397 | ; // odebug << "Sending the queue" << oendl; |
397 | if (!m_SmtpAccount) { | 398 | if (!m_SmtpAccount) { |
398 | ; // odebug << "No smtp account given" << oendl; | 399 | ; // odebug << "No smtp account given" << oendl; |
399 | return false; | 400 | return false; |
400 | } | 401 | } |
401 | 402 | ||
402 | bool reset_user_value = false; | 403 | bool reset_user_value = false; |
403 | QString localfolders = AbstractMail::defaultLocalfolder(); | 404 | QString localfolders = AbstractMail::defaultLocalfolder(); |
404 | AbstractMail*wrap = AbstractMail::getWrapper(localfolders); | 405 | AbstractMail*wrap = AbstractMail::getWrapper(localfolders); |
405 | if (!wrap) { | 406 | if (!wrap) { |
406 | ; // odebug << "memory error" << oendl; | 407 | ; // odebug << "memory error" << oendl; |
407 | return false; | 408 | return false; |
408 | } | 409 | } |
409 | QString oldPw, oldUser; | 410 | QString oldPw, oldUser; |
410 | QValueList<RecMailP> mailsToSend; | 411 | QValueList<RecMailP> mailsToSend; |
411 | QValueList<RecMailP> mailsToRemove; | 412 | QValueList<RecMailP> mailsToRemove; |
412 | QString mbox("Outgoing"); | 413 | QString mbox("Outgoing"); |
413 | wrap->listMessages(mbox,mailsToSend); | 414 | wrap->listMessages(mbox,mailsToSend); |
414 | if (mailsToSend.count()==0) { | 415 | if (mailsToSend.count()==0) { |
415 | delete wrap; | 416 | delete wrap; |
416 | ; // odebug << "No mails to send" << oendl; | 417 | ; // odebug << "No mails to send" << oendl; |
417 | return false; | 418 | return false; |
418 | } | 419 | } |
419 | 420 | ||
420 | oldPw = m_SmtpAccount->getPassword(); | 421 | oldPw = m_SmtpAccount->getPassword(); |
421 | oldUser = m_SmtpAccount->getUser(); | 422 | oldUser = m_SmtpAccount->getUser(); |
422 | if (m_SmtpAccount->getLogin() && (m_SmtpAccount->getUser().isEmpty() || m_SmtpAccount->getPassword().isEmpty()) ) { | 423 | if (m_SmtpAccount->getLogin() && (m_SmtpAccount->getUser().isEmpty() || m_SmtpAccount->getPassword().isEmpty()) ) { |
423 | // get'em | 424 | // get'em |
424 | QString user,pass; | 425 | QString user,pass; |
425 | LoginDialog login( m_SmtpAccount->getUser(), m_SmtpAccount->getPassword(), NULL, 0, true ); | 426 | LoginDialog login( m_SmtpAccount->getUser(), m_SmtpAccount->getPassword(), NULL, 0, true ); |
426 | login.show(); | 427 | login.show(); |
427 | if ( QDialog::Accepted == login.exec() ) { | 428 | if ( QDialog::Accepted == login.exec() ) { |
428 | // ok | 429 | // ok |
429 | user = login.getUser().latin1(); | 430 | user = login.getUser().latin1(); |
430 | pass = login.getPassword().latin1(); | 431 | pass = login.getPassword().latin1(); |
431 | reset_user_value = true; | 432 | reset_user_value = true; |
432 | m_SmtpAccount->setUser(user); | 433 | m_SmtpAccount->setUser(user); |
433 | m_SmtpAccount->setPassword(pass); | 434 | m_SmtpAccount->setPassword(pass); |
434 | } else { | 435 | } else { |
435 | return true; | 436 | return true; |
436 | } | 437 | } |
437 | } | 438 | } |
438 | 439 | ||
439 | 440 | ||
440 | sendProgress = new progressMailSend(); | 441 | sendProgress = new progressMailSend(); |
441 | sendProgress->show(); | 442 | sendProgress->show(); |
442 | sendProgress->setMaxMails(mailsToSend.count()); | 443 | sendProgress->setMaxMails(mailsToSend.count()); |
443 | 444 | ||
444 | while (mailsToSend.count()>0) { | 445 | while (returnValue && mailsToSend.count()>0) { |
445 | if (sendQueuedMail(wrap, (*mailsToSend.begin()))==0) { | 446 | if (sendQueuedMail(wrap, (*mailsToSend.begin()))==0) { |
446 | QMessageBox::critical(0,i18n("Error sending mail"), | 447 | QMessageBox::critical(0,i18n("Error sending mail"), |
447 | i18n("Error sending queued mail - breaking")); | 448 | i18n("Error sending queued mail.\nBreaking.")); |
448 | returnValue = false; | 449 | returnValue = false; |
449 | break; | ||
450 | } | 450 | } |
451 | mailsToRemove.append((*mailsToSend.begin())); | 451 | mailsToRemove.append((*mailsToSend.begin())); |
452 | mailsToSend.remove(mailsToSend.begin()); | 452 | mailsToSend.remove(mailsToSend.begin()); |
453 | sendProgress->setCurrentMails(mailsToRemove.count()); | 453 | sendProgress->setCurrentMails(mailsToRemove.count()); |
454 | } | 454 | } |
455 | if (reset_user_value) { | 455 | if (reset_user_value) { |
456 | m_SmtpAccount->setUser(oldUser); | 456 | m_SmtpAccount->setUser(oldUser); |
457 | m_SmtpAccount->setPassword(oldPw); | 457 | m_SmtpAccount->setPassword(oldPw); |
458 | } | 458 | } |
459 | KConfig cfg( locateLocal("config", "kopiemailrc" ) ); | 459 | KConfig cfg( locateLocal("config", "kopiemailrc" ) ); |
460 | cfg.setGroup( "Status" ); | 460 | cfg.setGroup( "Status" ); |
461 | m_queuedMail = 0; | 461 | m_queuedMail = mailsToSend.count(); |
462 | cfg.writeEntry( "outgoing", m_queuedMail ); | 462 | cfg.writeEntry( "outgoing", m_queuedMail ); |
463 | emit queuedMails( m_queuedMail ); | 463 | emit queuedMails( m_queuedMail ); |
464 | sendProgress->hide(); | 464 | sendProgress->hide(); |
465 | delete sendProgress; | 465 | delete sendProgress; |
466 | sendProgress = 0; | 466 | sendProgress = 0; |
467 | wrap->deleteMails(mbox,mailsToRemove); | 467 | wrap->deleteMails(mbox,mailsToRemove); |
468 | delete wrap; | 468 | delete wrap; |
469 | return returnValue; | 469 | return returnValue; |
470 | } | 470 | } |
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp index f68467c..197f7ec 100644 --- a/kmicromail/opiemail.cpp +++ b/kmicromail/opiemail.cpp | |||
@@ -98,122 +98,124 @@ void OpieMail::message(const QCString &msg, const QByteArray &data) | |||
98 | } | 98 | } |
99 | else if (msg == "newMail(QString)") | 99 | else if (msg == "newMail(QString)") |
100 | { | 100 | { |
101 | //qDebug(" newMail(QString)"); | 101 | //qDebug(" newMail(QString)"); |
102 | QDataStream stream(data,IO_ReadOnly); | 102 | QDataStream stream(data,IO_ReadOnly); |
103 | stream >> mPendingName; | 103 | stream >> mPendingName; |
104 | // the format is | 104 | // the format is |
105 | // NAME <EMAIL>:SUBJECT | 105 | // NAME <EMAIL>:SUBJECT |
106 | QTimer::singleShot ( 50, this, SLOT(slotComposeMail() ) ); | 106 | QTimer::singleShot ( 50, this, SLOT(slotComposeMail() ) ); |
107 | } else { | 107 | } else { |
108 | mPendingData = data; | 108 | mPendingData = data; |
109 | mPendingMessage = msg; | 109 | mPendingMessage = msg; |
110 | QTimer::singleShot ( 50, this, SLOT(slotExtAppHandler() ) ); | 110 | QTimer::singleShot ( 50, this, SLOT(slotExtAppHandler() ) ); |
111 | } | 111 | } |
112 | 112 | ||
113 | //qDebug("END OpieMail::message "); | 113 | //qDebug("END OpieMail::message "); |
114 | } | 114 | } |
115 | void OpieMail::slotExtAppHandler() | 115 | void OpieMail::slotExtAppHandler() |
116 | { | 116 | { |
117 | ExternalAppHandler::instance()->appMessage ( mPendingMessage, mPendingData ); | 117 | ExternalAppHandler::instance()->appMessage ( mPendingMessage, mPendingData ); |
118 | } | 118 | } |
119 | void OpieMail::slotwriteMail2(const QString& namemail ) | 119 | void OpieMail::slotwriteMail2(const QString& namemail ) |
120 | { | 120 | { |
121 | //qDebug("OpieMail::slotwriteMail2 "); | 121 | //qDebug("OpieMail::slotwriteMail2 "); |
122 | //qApp->processEvents(); | 122 | //qApp->processEvents(); |
123 | ComposeMail compose( settings, this, 0, true ); | 123 | ComposeMail compose( settings, this, 0, true ); |
124 | if ( !namemail.isEmpty() ) { | 124 | if ( !namemail.isEmpty() ) { |
125 | QString to = namemail; | 125 | QString to = namemail; |
126 | if ( namemail.find( " <") > 1 ) { | 126 | if ( namemail.find( " <") > 1 ) { |
127 | to = "\"" +to.replace( QRegExp( " <"), "\" <") ; | 127 | to = "\"" +to.replace( QRegExp( " <"), "\" <") ; |
128 | } else | 128 | } else |
129 | if ( namemail.find( "<") > 1 ) { | 129 | if ( namemail.find( "<") > 1 ) { |
130 | to = "\"" +to.replace( QRegExp( "<"), "\" <") ; | 130 | to = "\"" +to.replace( QRegExp( "<"), "\" <") ; |
131 | } | 131 | } |
132 | int sub = to.find( ">:"); | 132 | int sub = to.find( ">:"); |
133 | if ( sub > 0 ) { | 133 | if ( sub > 0 ) { |
134 | compose.setTo( to.left(sub+1) ); | 134 | compose.setTo( to.left(sub+1) ); |
135 | compose.setSubject( to.mid(sub+2) ); | 135 | compose.setSubject( to.mid(sub+2) ); |
136 | } else | 136 | } else |
137 | compose.setTo( to ); | 137 | compose.setTo( to ); |
138 | } | 138 | } |
139 | compose.slotAdjustColumns(); | 139 | compose.slotAdjustColumns(); |
140 | #ifndef DESKTOP_VERSION | 140 | #ifndef DESKTOP_VERSION |
141 | compose.showMaximized(); | 141 | compose.showMaximized(); |
142 | #endif | 142 | #endif |
143 | mCurrentComposer = &compose; | 143 | mCurrentComposer = &compose; |
144 | compose.exec(); | 144 | compose.exec(); |
145 | mCurrentComposer = 0; | 145 | mCurrentComposer = 0; |
146 | folderView->refreshOutgoing(); | ||
146 | raise(); | 147 | raise(); |
147 | //qDebug("retttich "); | 148 | //qDebug("retttich "); |
148 | } | 149 | } |
149 | void OpieMail::slotwriteMail(const QString&name,const QString&email) | 150 | void OpieMail::slotwriteMail(const QString&name,const QString&email) |
150 | { | 151 | { |
151 | // qDebug("OpieMail::slotwriteMail "); | 152 | // qDebug("OpieMail::slotwriteMail "); |
152 | ComposeMail compose( settings, this, 0, true ); | 153 | ComposeMail compose( settings, this, 0, true ); |
153 | if (!email.isEmpty()) | 154 | if (!email.isEmpty()) |
154 | { | 155 | { |
155 | if (!name.isEmpty()) | 156 | if (!name.isEmpty()) |
156 | { | 157 | { |
157 | compose.setTo("\"" + name + "\"" + " " + "<"+ email + ">"); | 158 | compose.setTo("\"" + name + "\"" + " " + "<"+ email + ">"); |
158 | } | 159 | } |
159 | else | 160 | else |
160 | { | 161 | { |
161 | compose.setTo(email); | 162 | compose.setTo(email); |
162 | } | 163 | } |
163 | } | 164 | } |
164 | compose.slotAdjustColumns(); | 165 | compose.slotAdjustColumns(); |
165 | #ifndef DESKTOP_VERSION | 166 | #ifndef DESKTOP_VERSION |
166 | compose.showMaximized(); | 167 | compose.showMaximized(); |
167 | #endif | 168 | #endif |
168 | 169 | ||
169 | mCurrentComposer = &compose; | 170 | mCurrentComposer = &compose; |
170 | compose.exec(); | 171 | compose.exec(); |
171 | mCurrentComposer = 0; | 172 | mCurrentComposer = 0; |
173 | folderView->refreshOutgoing(); | ||
172 | raise(); | 174 | raise(); |
173 | } | 175 | } |
174 | 176 | ||
175 | void OpieMail::slotComposeMail() | 177 | void OpieMail::slotComposeMail() |
176 | { | 178 | { |
177 | if ( mPendingEmail == QString::null && mPendingName == QString::null) | 179 | if ( mPendingEmail == QString::null && mPendingName == QString::null) |
178 | slotwriteMail2( QString () ); | 180 | slotwriteMail2( QString () ); |
179 | else { | 181 | else { |
180 | if ( mPendingEmail == QString::null ) | 182 | if ( mPendingEmail == QString::null ) |
181 | slotwriteMail2( mPendingName ); | 183 | slotwriteMail2( mPendingName ); |
182 | else | 184 | else |
183 | slotwriteMail( mPendingName, mPendingEmail ); | 185 | slotwriteMail( mPendingName, mPendingEmail ); |
184 | } | 186 | } |
185 | //slotwriteMail(0l,0l); | 187 | //slotwriteMail(0l,0l); |
186 | } | 188 | } |
187 | 189 | ||
188 | void OpieMail::slotSendQueued() | 190 | void OpieMail::slotSendQueued() |
189 | { | 191 | { |
190 | SMTPaccount *smtp = 0; | 192 | SMTPaccount *smtp = 0; |
191 | 193 | ||
192 | QList<Account> list = settings->getAccounts(); | 194 | QList<Account> list = settings->getAccounts(); |
193 | QList<SMTPaccount> smtpList; | 195 | QList<SMTPaccount> smtpList; |
194 | smtpList.setAutoDelete(false); | 196 | smtpList.setAutoDelete(false); |
195 | Account *it; | 197 | Account *it; |
196 | for ( it = list.first(); it; it = list.next() ) | 198 | for ( it = list.first(); it; it = list.next() ) |
197 | { | 199 | { |
198 | if ( it->getType() == MAILLIB::A_SMTP ) | 200 | if ( it->getType() == MAILLIB::A_SMTP ) |
199 | { | 201 | { |
200 | smtp = static_cast<SMTPaccount *>(it); | 202 | smtp = static_cast<SMTPaccount *>(it); |
201 | smtpList.append(smtp); | 203 | smtpList.append(smtp); |
202 | } | 204 | } |
203 | } | 205 | } |
204 | if (smtpList.count()==0) | 206 | if (smtpList.count()==0) |
205 | { | 207 | { |
206 | QMessageBox::information(0,i18n("Info"),i18n("Define a smtp account first!\n")); | 208 | QMessageBox::information(0,i18n("Info"),i18n("Define a smtp account first!\n")); |
207 | return; | 209 | return; |
208 | } | 210 | } |
209 | if ( QMessageBox::warning(this, i18n("Sending all mails"), i18n("Do you really want to send\nall queued mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::No ) | 211 | if ( QMessageBox::warning(this, i18n("Sending all mails"), i18n("Do you really want to send\nall queued mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::No ) |
210 | return; | 212 | return; |
211 | if (smtpList.count()==1) | 213 | if (smtpList.count()==1) |
212 | { | 214 | { |
213 | smtp = smtpList.at(0); | 215 | smtp = smtpList.at(0); |
214 | } | 216 | } |
215 | else | 217 | else |
216 | { | 218 | { |
217 | smtp = 0; | 219 | smtp = 0; |
218 | selectsmtp selsmtp; | 220 | selectsmtp selsmtp; |
219 | selsmtp.setSelectionlist(&smtpList); | 221 | selsmtp.setSelectionlist(&smtpList); |
@@ -269,96 +271,97 @@ void OpieMail::slotEditAccounts() | |||
269 | settings = new Settings(); | 271 | settings = new Settings(); |
270 | 272 | ||
271 | folderView->populate( settings->getAccounts() ); | 273 | folderView->populate( settings->getAccounts() ); |
272 | } | 274 | } |
273 | void OpieMail::replyMail() | 275 | void OpieMail::replyMail() |
274 | { | 276 | { |
275 | 277 | ||
276 | QListViewItem*item = mailView->currentItem(); | 278 | QListViewItem*item = mailView->currentItem(); |
277 | if (!item) return; | 279 | if (!item) return; |
278 | RecMailP mail = ((MailListViewItem*)item)->data(); | 280 | RecMailP mail = ((MailListViewItem*)item)->data(); |
279 | RecBodyP body = folderView->fetchBody(mail); | 281 | RecBodyP body = folderView->fetchBody(mail); |
280 | 282 | ||
281 | QString rtext; | 283 | QString rtext; |
282 | rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose | 284 | rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose |
283 | .arg( mail->getFrom()) | 285 | .arg( mail->getFrom()) |
284 | .arg( mail->getDate()); | 286 | .arg( mail->getDate()); |
285 | 287 | ||
286 | QString text = body->Bodytext(); | 288 | QString text = body->Bodytext(); |
287 | QStringList lines = QStringList::split(QRegExp("\\n"), text); | 289 | QStringList lines = QStringList::split(QRegExp("\\n"), text); |
288 | QStringList::Iterator it; | 290 | QStringList::Iterator it; |
289 | for (it = lines.begin(); it != lines.end(); it++) | 291 | for (it = lines.begin(); it != lines.end(); it++) |
290 | { | 292 | { |
291 | rtext += "> " + *it + "\n"; | 293 | rtext += "> " + *it + "\n"; |
292 | } | 294 | } |
293 | rtext += "\n"; | 295 | rtext += "\n"; |
294 | 296 | ||
295 | QString prefix; | 297 | QString prefix; |
296 | if ( mail->getSubject().find(QRegExp("^Re: .*$")) != -1) prefix = ""; | 298 | if ( mail->getSubject().find(QRegExp("^Re: .*$")) != -1) prefix = ""; |
297 | else prefix = "Re: "; // no i18n on purpose | 299 | else prefix = "Re: "; // no i18n on purpose |
298 | 300 | ||
299 | Settings *settings = new Settings(); | 301 | Settings *settings = new Settings(); |
300 | ComposeMail composer( settings ,this, 0, true); | 302 | ComposeMail composer( settings ,this, 0, true); |
301 | if (mail->Replyto().isEmpty()) { | 303 | if (mail->Replyto().isEmpty()) { |
302 | composer.setTo( mail->getFrom()); | 304 | composer.setTo( mail->getFrom()); |
303 | } else { | 305 | } else { |
304 | composer.setTo( mail->Replyto()); | 306 | composer.setTo( mail->Replyto()); |
305 | } | 307 | } |
306 | composer.setSubject( prefix + mail->getSubject()); | 308 | composer.setSubject( prefix + mail->getSubject()); |
307 | composer.setMessage( rtext ); | 309 | composer.setMessage( rtext ); |
308 | composer.setInReplyTo( mail->Msgid()); | 310 | composer.setInReplyTo( mail->Msgid()); |
309 | composer.setCharset( body->getCharset() ); | 311 | composer.setCharset( body->getCharset() ); |
310 | 312 | ||
311 | mCurrentComposer = &composer; | 313 | mCurrentComposer = &composer; |
312 | if ( QDialog::Accepted == KApplication::execDialog( &composer ) ) | 314 | if ( QDialog::Accepted == KApplication::execDialog( &composer ) ) |
313 | { | 315 | { |
314 | mail->Wrapper()->answeredMail(mail); | 316 | mail->Wrapper()->answeredMail(mail); |
315 | } | 317 | } |
316 | mCurrentComposer = 0; | 318 | mCurrentComposer = 0; |
319 | folderView->refreshOutgoing(); | ||
317 | delete settings; | 320 | delete settings; |
318 | 321 | ||
319 | } | 322 | } |
320 | void OpieMail::closeViewMail(ViewMail * vm) | 323 | void OpieMail::closeViewMail(ViewMail * vm) |
321 | { | 324 | { |
322 | vm->hide(); | 325 | vm->hide(); |
323 | } | 326 | } |
324 | 327 | ||
325 | void OpieMail::slotDownloadMail( ) | 328 | void OpieMail::slotDownloadMail( ) |
326 | { | 329 | { |
327 | QListViewItem*item = mailView->currentItem(); | 330 | QListViewItem*item = mailView->currentItem(); |
328 | if (!item ) { | 331 | if (!item ) { |
329 | Global::statusMessage("Error: No item slected!"); | 332 | Global::statusMessage("Error: No item slected!"); |
330 | return; | 333 | return; |
331 | } | 334 | } |
332 | RecMailP mail = ((MailListViewItem*)item)->data(); | 335 | RecMailP mail = ((MailListViewItem*)item)->data(); |
333 | Account * acc = mail->Wrapper()->getAccount(); | 336 | Account * acc = mail->Wrapper()->getAccount(); |
334 | if ( !acc ) { | 337 | if ( !acc ) { |
335 | Global::statusMessage("Mail is already stored locally!"); | 338 | Global::statusMessage("Mail is already stored locally!"); |
336 | return; | 339 | return; |
337 | } | 340 | } |
338 | QString lfName = acc->getLocalFolder(); | 341 | QString lfName = acc->getLocalFolder(); |
339 | //qDebug("local folder " + lfName ); | 342 | //qDebug("local folder " + lfName ); |
340 | if ( lfName.isEmpty() ) | 343 | if ( lfName.isEmpty() ) |
341 | lfName = acc->getAccountName(); | 344 | lfName = acc->getAccountName(); |
342 | AbstractMail* targetMail = folderView->allAccounts()[0]->getWrapper(); | 345 | AbstractMail* targetMail = folderView->allAccounts()[0]->getWrapper(); |
343 | //qDebug("target %d %d ",targetMail,mail->Wrapper() ); | 346 | //qDebug("target %d %d ",targetMail,mail->Wrapper() ); |
344 | if ( targetMail == mail->Wrapper() ) { | 347 | if ( targetMail == mail->Wrapper() ) { |
345 | Global::statusMessage("Mail is already locally stored!"); | 348 | Global::statusMessage("Mail is already locally stored!"); |
346 | return; | 349 | return; |
347 | } | 350 | } |
348 | if ( !targetMail->createMbox(lfName)) { | 351 | if ( !targetMail->createMbox(lfName)) { |
349 | Global::statusMessage("Error creating folder!"); | 352 | Global::statusMessage("Error creating folder!"); |
350 | return; | 353 | return; |
351 | } | 354 | } |
352 | Global::statusMessage("Fetching mail...please wait!"); | 355 | Global::statusMessage("Fetching mail...please wait!"); |
353 | qApp->processEvents(); | 356 | qApp->processEvents(); |
354 | encodedString*st = 0; | 357 | encodedString*st = 0; |
355 | st = mail->Wrapper()->fetchRawBody(mail); | 358 | st = mail->Wrapper()->fetchRawBody(mail); |
356 | if ( st ) { | 359 | if ( st ) { |
357 | targetMail->storeMessage(st->Content(),st->Length(),lfName); | 360 | targetMail->storeMessage(st->Content(),st->Length(),lfName); |
358 | Global::statusMessage("Mail stored in "+ lfName); | 361 | Global::statusMessage("Mail stored in "+ lfName); |
359 | delete st; | 362 | delete st; |
360 | } else { | 363 | } else { |
361 | Global::statusMessage("Error: Cannot fetch mail!"); | 364 | Global::statusMessage("Error: Cannot fetch mail!"); |
362 | } | 365 | } |
363 | } | 366 | } |
364 | 367 | ||
@@ -604,69 +607,71 @@ void OpieMail::slotMoveCopyAllMail() | |||
604 | } | 607 | } |
605 | item = (MailListViewItem*)item->nextSibling(); | 608 | item = (MailListViewItem*)item->nextSibling(); |
606 | } | 609 | } |
607 | } | 610 | } |
608 | // else | 611 | // else |
609 | // return; | 612 | // return; |
610 | if ( t.count() == 0 ) | 613 | if ( t.count() == 0 ) |
611 | return; | 614 | return; |
612 | RecMailP mail = t.first(); | 615 | RecMailP mail = t.first(); |
613 | AbstractMail*targetMail = 0; | 616 | AbstractMail*targetMail = 0; |
614 | QString targetFolder = ""; | 617 | QString targetFolder = ""; |
615 | Selectstore sels; | 618 | Selectstore sels; |
616 | folderView->setupFolderselect(&sels); | 619 | folderView->setupFolderselect(&sels); |
617 | if (!sels.exec()) return; | 620 | if (!sels.exec()) return; |
618 | targetMail = sels.currentMail(); | 621 | targetMail = sels.currentMail(); |
619 | targetFolder = sels.currentFolder(); | 622 | targetFolder = sels.currentFolder(); |
620 | if ( (mail->Wrapper()==targetMail && mail->getMbox()==targetFolder) || | 623 | if ( (mail->Wrapper()==targetMail && mail->getMbox()==targetFolder) || |
621 | targetFolder.isEmpty()) | 624 | targetFolder.isEmpty()) |
622 | { | 625 | { |
623 | return; | 626 | return; |
624 | } | 627 | } |
625 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) | 628 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) |
626 | { | 629 | { |
627 | QMessageBox::critical(0,i18n("Error creating new Folder"), | 630 | QMessageBox::critical(0,i18n("Error creating new Folder"), |
628 | i18n("<center>Error while creating<br>new folder - breaking.</center>")); | 631 | i18n("<center>Error while creating<br>new folder - breaking.</center>")); |
629 | return; | 632 | return; |
630 | } | 633 | } |
631 | sels.hide(); | 634 | sels.hide(); |
632 | qApp->processEvents(); | 635 | qApp->processEvents(); |
633 | //qDebug("hiding sels "); | 636 | //qDebug("hiding sels "); |
634 | mail->Wrapper()->mvcpMailList(t,targetFolder,targetMail,sels.moveMails()); | 637 | mail->Wrapper()->mvcpMailList(t,targetFolder,targetMail,sels.moveMails()); |
635 | folderView->refreshCurrent(); | 638 | folderView->refreshCurrent(); |
636 | } | 639 | } |
637 | 640 | ||
638 | void OpieMail::reEditMail() | 641 | void OpieMail::reEditMail() |
639 | { | 642 | { |
640 | if (!mailView->currentItem()) return; | 643 | if (!mailView->currentItem()) return; |
641 | 644 | ||
642 | ComposeMail compose( settings, this, 0, true ); | 645 | ComposeMail compose( settings, this, 0, true ); |
643 | compose.reEditMail(((MailListViewItem*)mailView->currentItem() )->data()); | 646 | compose.reEditMail(((MailListViewItem*)mailView->currentItem() )->data()); |
644 | compose.slotAdjustColumns(); | 647 | compose.slotAdjustColumns(); |
645 | #ifndef DESKTOP_VERSION | 648 | #ifndef DESKTOP_VERSION |
646 | compose.showMaximized(); | 649 | compose.showMaximized(); |
647 | #else | 650 | #else |
648 | compose.resize(640,480); | 651 | compose.resize(640,480); |
649 | #endif | 652 | #endif |
650 | mCurrentComposer = &compose; | 653 | mCurrentComposer = &compose; |
651 | compose.exec(); | 654 | compose.exec(); |
655 | folderView->refreshOutgoing(); | ||
652 | mCurrentComposer = 0; | 656 | mCurrentComposer = 0; |
653 | } | 657 | } |
654 | 658 | ||
655 | void OpieMail::insertAttendees(const QString& uid,const QStringList& nameList,const QStringList& emailList,const QStringList& uidList) | 659 | void OpieMail::insertAttendees(const QString& uid,const QStringList& nameList,const QStringList& emailList,const QStringList& uidList) |
656 | { | 660 | { |
657 | 661 | ||
658 | if ( mCurrentComposer ) { | 662 | if ( mCurrentComposer ) { |
659 | mCurrentComposer->insertAttendees(uid,nameList,emailList,uidList); | 663 | mCurrentComposer->insertAttendees(uid,nameList,emailList,uidList); |
660 | } else { | 664 | } else { |
661 | ComposeMail compose( settings, this, 0, true ); | 665 | ComposeMail compose( settings, this, 0, true ); |
662 | compose.slotAdjustColumns(); | 666 | compose.slotAdjustColumns(); |
663 | #ifndef DESKTOP_VERSION | 667 | #ifndef DESKTOP_VERSION |
664 | compose.showMaximized(); | 668 | compose.showMaximized(); |
665 | #endif | 669 | #endif |
666 | mCurrentComposer = &compose; | 670 | mCurrentComposer = &compose; |
667 | mCurrentComposer->insertAttendees(uid,nameList,emailList,uidList); | 671 | mCurrentComposer->insertAttendees(uid,nameList,emailList,uidList); |
668 | compose.exec(); | 672 | compose.exec(); |
669 | mCurrentComposer = 0; | 673 | mCurrentComposer = 0; |
674 | folderView->refreshOutgoing(); | ||
670 | raise(); | 675 | raise(); |
671 | } | 676 | } |
672 | } | 677 | } |