summaryrefslogtreecommitdiff
path: root/noncore/net/mail/abstractmail.h
blob: 5dc4cab2b51f7c90cd4f20a2a3f3c2fcb732aff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef __abstract_mail_
#define __abstract_mail_

#include <qobject.h>
#include "settings.h"

class RecMail;
class RecBody;
class RecPart;
class IMAPwrapper;
class POP3wrapper;
class Folder;
class encodedString;

class AbstractMail:public QObject
{
    Q_OBJECT
public:
    AbstractMail(){};
    virtual ~AbstractMail(){}
    virtual QList<Folder>* listFolders()=0;
    virtual void listMessages(const QString & mailbox,QList<RecMail>&target )=0;
    virtual RecBody fetchBody(const RecMail&mail)=0;
    virtual QString fetchTextPart(const RecMail&mail,const RecPart&part)=0;
    virtual encodedString* fetchDecodedPart(const RecMail&mail,const RecPart&part)=0;
    virtual encodedString* fetchRawPart(const RecMail&mail,const RecPart&part)=0;

    virtual void deleteMail(const RecMail&mail)=0;
    virtual void answeredMail(const RecMail&mail)=0;
    virtual void cleanMimeCache(){};
    virtual int deleteAllMail(const Folder*){return 1;}
    virtual int deleteMbox(const Folder*){return 1;}
    
    /* mail box methods */
    /* parameter is the box to create.
     * if the implementing subclass has prefixes, 
     * them has to be appended automatic.
     */
    virtual int createMbox(const QString&,const Folder*parentfolder=0,const QString& delemiter="/",bool getsubfolder=false){return 0;}

    static AbstractMail* getWrapper(IMAPaccount *a);
    static AbstractMail* getWrapper(POP3account *a);
    /* mbox only! */
    static AbstractMail* getWrapper(const QString&a);

protected:
    static encodedString*decode_String(const encodedString*text,const QString&enc);
    static QString convert_String(const char*text);
    static QString gen_attachment_id();
};
#endif