blob: 12c14c1077a720ac71c708c6e8962c93324faa98 (
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
52
53
54
55
56
57
|
/* KMail account for local mail folders
*
*/
#ifndef kmacctlocal_h
#define kmacctlocal_h
#include "kmaccount.h"
#include "kmglobal.h"
class KMAcctLocal: public KMAccount
{
protected:
friend class ::AccountManager;
KMAcctLocal(AccountManager* owner, const QString& accountName, uint id);
public:
virtual ~KMAcctLocal();
virtual void init(void);
virtual void pseudoAssign( const KMAccount * a );
/** Access to location of local mail file (usually something like
"/var/spool/mail/joe"). */
QString location(void) const { return mLocation; }
virtual void setLocation(const QString&);
/** Acceso to Locking method */
LockType lockType(void) const { return mLock; }
void setLockType(LockType lt) { mLock = lt; }
QString procmailLockFileName(void) const { return mProcmailLockFileName; }
void setProcmailLockFileName(const QString& s);
virtual QString type(void) const;
virtual void processNewMail(bool);
virtual void readConfig(KConfig&);
virtual void writeConfig(KConfig&);
private:
bool preProcess();
bool fetchMsg();
void postProcess();
private:
QString mLocation;
QString mProcmailLockFileName;
bool mHasNewMail;
bool mAddedOk;
LockType mLock;
int mNumMsgs;
int mMsgsFetched;
KMFolder *mMailFolder;
QString mStatusMsgStub;
};
#endif /*kmacctlocal_h*/
|