blob: 2abe34f5b1092209b5a301caa07d7b0ad87d2d78 (
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 TQString& 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"). */
TQString location(void) const { return mLocation; }
virtual void setLocation(const TQString&);
/** Acceso to Locking method */
LockType lockType(void) const { return mLock; }
void setLockType(LockType lt) { mLock = lt; }
TQString procmailLockFileName(void) const { return mProcmailLockFileName; }
void setProcmailLockFileName(const TQString& s);
virtual TQString type(void) const;
virtual void processNewMail(bool);
virtual void readConfig(KConfig&);
virtual void writeConfig(KConfig&);
private:
bool preProcess();
bool fetchMsg();
void postProcess();
private:
TQString mLocation;
TQString mProcmailLockFileName;
bool mHasNewMail;
bool mAddedOk;
LockType mLock;
int mNumMsgs;
int mMsgsFetched;
KMFolder *mMailFolder;
TQString mStatusMsgStub;
};
#endif /*kmacctlocal_h*/
|