diff options
Diffstat (limited to '')
-rw-r--r-- | src/messaging/POP3Store.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/messaging/POP3Store.hpp b/src/messaging/POP3Store.hpp index d91f0d69..b4c670d3 100644 --- a/src/messaging/POP3Store.hpp +++ b/src/messaging/POP3Store.hpp @@ -51,7 +51,7 @@ public: folder* getRootFolder(); folder* getFolder(const folder::path& path); - const bool isValidFolderName(const folder::path::component& name); + const bool isValidFolderName(const folder::path::component& name) const; static const serviceInfos& getInfosInstance(); const serviceInfos& getInfos() const; @@ -62,6 +62,8 @@ public: void noop(); + const int getCapabilities() const; + private: static const bool isSuccessResponse(const string& buffer); |