-rw-r--r-- | noncore/net/mail/libmailwrapper/abstractmail.h | 2 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.cpp | 5 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.h | 1 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/mboxwrapper.cpp | 7 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/mboxwrapper.h | 2 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/pop3wrapper.cpp | 5 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/pop3wrapper.h | 2 |
7 files changed, 23 insertions, 1 deletions
diff --git a/noncore/net/mail/libmailwrapper/abstractmail.h b/noncore/net/mail/libmailwrapper/abstractmail.h index a070fb0..7c060db 100644 --- a/noncore/net/mail/libmailwrapper/abstractmail.h +++ b/noncore/net/mail/libmailwrapper/abstractmail.h | |||
@@ -50,4 +50,6 @@ public: | |||
50 | static QString defaultLocalfolder(); | 50 | static QString defaultLocalfolder(); |
51 | 51 | ||
52 | virtual const QString&getType()const=0; | ||
53 | |||
52 | protected: | 54 | protected: |
53 | static encodedString*decode_String(const encodedString*text,const QString&enc); | 55 | static encodedString*decode_String(const encodedString*text,const QString&enc); |
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp index 0c1e05e..95b317a 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp | |||
@@ -986,2 +986,7 @@ void IMAPwrapper::storeMessage(const char*msg,size_t length, const QString&folde | |||
986 | } | 986 | } |
987 | } | 987 | } |
988 | |||
989 | const QString&IMAPwrapper::getType()const | ||
990 | { | ||
991 | return account->getType(); | ||
992 | } | ||
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.h b/noncore/net/mail/libmailwrapper/imapwrapper.h index a97f12d..6a9c411 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.h +++ b/noncore/net/mail/libmailwrapper/imapwrapper.h | |||
@@ -44,4 +44,5 @@ public: | |||
44 | 44 | ||
45 | virtual void logout(); | 45 | virtual void logout(); |
46 | virtual const QString&getType()const; | ||
46 | protected: | 47 | protected: |
47 | RecMail*parse_list_result(mailimap_msg_att*); | 48 | RecMail*parse_list_result(mailimap_msg_att*); |
diff --git a/noncore/net/mail/libmailwrapper/mboxwrapper.cpp b/noncore/net/mail/libmailwrapper/mboxwrapper.cpp index 540a971..60f7507 100644 --- a/noncore/net/mail/libmailwrapper/mboxwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/mboxwrapper.cpp | |||
@@ -7,4 +7,6 @@ | |||
7 | #include <qpe/global.h> | 7 | #include <qpe/global.h> |
8 | 8 | ||
9 | const QString MBOXwrapper::wrapperType="MBOX"; | ||
10 | |||
9 | MBOXwrapper::MBOXwrapper(const QString & mbox_dir) | 11 | MBOXwrapper::MBOXwrapper(const QString & mbox_dir) |
10 | : Genericwrapper(),MBOXPath(mbox_dir) | 12 | : Genericwrapper(),MBOXPath(mbox_dir) |
@@ -323,2 +325,7 @@ void MBOXwrapper::statusFolder(folderStat&target_stat,const QString & mailbox) | |||
323 | if (storage) mailstorage_free(storage); | 325 | if (storage) mailstorage_free(storage); |
324 | } | 326 | } |
327 | |||
328 | const QString&MBOXwrapper::getType()const | ||
329 | { | ||
330 | return wrapperType; | ||
331 | } | ||
diff --git a/noncore/net/mail/libmailwrapper/mboxwrapper.h b/noncore/net/mail/libmailwrapper/mboxwrapper.h index f822997..f97fce2 100644 --- a/noncore/net/mail/libmailwrapper/mboxwrapper.h +++ b/noncore/net/mail/libmailwrapper/mboxwrapper.h | |||
@@ -34,8 +34,10 @@ public: | |||
34 | virtual void deleteMails(const QString & mailbox,QList<RecMail> &target); | 34 | virtual void deleteMails(const QString & mailbox,QList<RecMail> &target); |
35 | virtual int deleteAllMail(const Folder*); | 35 | virtual int deleteAllMail(const Folder*); |
36 | virtual const QString&getType()const; | ||
36 | 37 | ||
37 | protected: | 38 | protected: |
38 | static void deleteMails(mailmbox_folder*f,QList<RecMail> &target); | 39 | static void deleteMails(mailmbox_folder*f,QList<RecMail> &target); |
39 | QString MBOXPath; | 40 | QString MBOXPath; |
41 | static const QString wrapperType; | ||
40 | }; | 42 | }; |
41 | 43 | ||
diff --git a/noncore/net/mail/libmailwrapper/pop3wrapper.cpp b/noncore/net/mail/libmailwrapper/pop3wrapper.cpp index b4eca6f..45408dd 100644 --- a/noncore/net/mail/libmailwrapper/pop3wrapper.cpp +++ b/noncore/net/mail/libmailwrapper/pop3wrapper.cpp | |||
@@ -236,2 +236,7 @@ void POP3wrapper::fetchRawBody(const RecMail&mail,char**target,size_t*length) | |||
236 | if (mailmsg) mailmessage_free(mailmsg); | 236 | if (mailmsg) mailmessage_free(mailmsg); |
237 | } | 237 | } |
238 | |||
239 | const QString&POP3wrapper::getType()const | ||
240 | { | ||
241 | return account->getType(); | ||
242 | } | ||
diff --git a/noncore/net/mail/libmailwrapper/pop3wrapper.h b/noncore/net/mail/libmailwrapper/pop3wrapper.h index 9cba101..b7e8f27 100644 --- a/noncore/net/mail/libmailwrapper/pop3wrapper.h +++ b/noncore/net/mail/libmailwrapper/pop3wrapper.h | |||
@@ -29,5 +29,5 @@ public: | |||
29 | virtual void fetchRawBody(const RecMail&mail,char**target,size_t*length); | 29 | virtual void fetchRawBody(const RecMail&mail,char**target,size_t*length); |
30 | virtual void logout(); | 30 | virtual void logout(); |
31 | 31 | virtual const QString&getType()const; | |
32 | static void pop3_progress( size_t current, size_t maximum ); | 32 | static void pop3_progress( size_t current, size_t maximum ); |
33 | 33 | ||