From 1b41a0e3bf63364940daf132446939e3570c57ad Mon Sep 17 00:00:00 2001 From: zautrix Date: Fri, 10 Sep 2004 22:52:50 +0000 Subject: Added pop3 settings --- (limited to 'kmicromail/libmailwrapper/settings.h') diff --git a/kmicromail/libmailwrapper/settings.h b/kmicromail/libmailwrapper/settings.h index ba3ec89..c33c403 100644 --- a/kmicromail/libmailwrapper/settings.h +++ b/kmicromail/libmailwrapper/settings.h @@ -8,6 +8,7 @@ /* QT */ #include #include +#include class Account { @@ -24,6 +25,9 @@ public: void setServer(const QString&str){ server = str; } const QString&getServer()const{ return server; } + void setLocalFolder( QString name ) { localFolder = name; } + const QString& getLocalFolder()const{ return localFolder; } + void setPort(const QString&str) { port = str; } const QString&getPort()const{ return port; } @@ -39,6 +43,8 @@ public: void setConnectionType( int x ) { connectionType = x; } int ConnectionType() { return connectionType; } + void setMaxMailSize( int x ) { maxMailSize = x; } + int getMaxMailSize() { return maxMailSize; } void setOffline(bool b) {offline = b;} bool getOffline()const{return offline;} @@ -53,6 +59,9 @@ protected: int connectionType; bool offline; MAILLIB::ATYPE type; + QString localFolder; + int maxMailSize; + QDateTime lastFetch; }; class IMAPaccount : public Account -- cgit v0.9.0.2