author | zautrix <zautrix> | 2004-10-31 18:40:14 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-31 18:40:14 (UTC) |
commit | 16292c7f13b40a07b51b41c701cd106ccfd2f37b (patch) (unidiff) | |
tree | f3e2dfe11b00f1d910eaeaafd28b0d97aa717ce1 | |
parent | 043e2d256df36945779bf4568df46b6e4ae51e0e (diff) | |
download | kdepimpi-16292c7f13b40a07b51b41c701cd106ccfd2f37b.zip kdepimpi-16292c7f13b40a07b51b41c701cd106ccfd2f37b.tar.gz kdepimpi-16292c7f13b40a07b51b41c701cd106ccfd2f37b.tar.bz2 |
hope it works..
-rw-r--r-- | desktop/rpm/kdepim_rpm | 2 | ||||
-rw-r--r-- | kmicromail/libmailwrapper/smtpwrapper.cpp | 6 | ||||
-rw-r--r-- | version | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/desktop/rpm/kdepim_rpm b/desktop/rpm/kdepim_rpm index b663918..cead6bb 100644 --- a/desktop/rpm/kdepim_rpm +++ b/desktop/rpm/kdepim_rpm | |||
@@ -1,7 +1,7 @@ | |||
1 | Summary: A collection of PIM programs | 1 | Summary: A collection of PIM programs |
2 | Name: KDE-Pim-Pi | 2 | Name: KDE-Pim-Pi |
3 | Version: 1.9.11 | 3 | Version: 1.9.13 |
4 | Release: SuSE_9.1 | 4 | Release: SuSE_9.1 |
5 | Copyright:GPL | 5 | Copyright:GPL |
6 | Group: Productivity/Pim | 6 | Group: Productivity/Pim |
7 | Source:http://sourceforge.net/projects/kdepimpi/ | 7 | Source:http://sourceforge.net/projects/kdepimpi/ |
diff --git a/kmicromail/libmailwrapper/smtpwrapper.cpp b/kmicromail/libmailwrapper/smtpwrapper.cpp index eb07ef1..f54fe2b 100644 --- a/kmicromail/libmailwrapper/smtpwrapper.cpp +++ b/kmicromail/libmailwrapper/smtpwrapper.cpp | |||
@@ -26,9 +26,9 @@ progressMailSend*SMTPwrapper::sendProgress = 0; | |||
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", "kopiemail" ) ); | 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) ) ); |
@@ -131,9 +131,9 @@ bool SMTPwrapper::smtpSend( mailmime *mail,bool later) { | |||
131 | if (later) { | 131 | if (later) { |
132 | storeMail(data,size,"Outgoing"); | 132 | storeMail(data,size,"Outgoing"); |
133 | if (data) | 133 | if (data) |
134 | free( data ); | 134 | free( data ); |
135 | KConfig cfg( locateLocal("config", "kopiemail" ) ); | 135 | KConfig cfg( locateLocal("config", "kopiemailrc" ) ); |
136 | cfg.setGroup( "Status" ); | 136 | cfg.setGroup( "Status" ); |
137 | cfg.writeEntry( "outgoing", ++m_queuedMail ); | 137 | cfg.writeEntry( "outgoing", ++m_queuedMail ); |
138 | emit queuedMails( m_queuedMail ); | 138 | emit queuedMails( m_queuedMail ); |
139 | return true; | 139 | return true; |
@@ -451,9 +451,9 @@ bool SMTPwrapper::flushOutbox() { | |||
451 | if (reset_user_value) { | 451 | if (reset_user_value) { |
452 | m_SmtpAccount->setUser(oldUser); | 452 | m_SmtpAccount->setUser(oldUser); |
453 | m_SmtpAccount->setPassword(oldPw); | 453 | m_SmtpAccount->setPassword(oldPw); |
454 | } | 454 | } |
455 | KConfig cfg( locateLocal("config", "kopiemail" ) ); | 455 | KConfig cfg( locateLocal("config", "kopiemailrc" ) ); |
456 | cfg.setGroup( "Status" ); | 456 | cfg.setGroup( "Status" ); |
457 | m_queuedMail = 0; | 457 | m_queuedMail = 0; |
458 | cfg.writeEntry( "outgoing", m_queuedMail ); | 458 | cfg.writeEntry( "outgoing", m_queuedMail ); |
459 | emit queuedMails( m_queuedMail ); | 459 | emit queuedMails( m_queuedMail ); |
@@ -1 +1 @@ | |||
version = "1.9.12"; | version = "1.9.13"; | ||