diff options
Diffstat (limited to '')
-rw-r--r-- | src/messaging/POP3Store.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/messaging/POP3Store.cpp b/src/messaging/POP3Store.cpp index 0bc3b6a5..4bf40583 100644 --- a/src/messaging/POP3Store.cpp +++ b/src/messaging/POP3Store.cpp @@ -82,7 +82,7 @@ folder* POP3Store::getFolder(const folder::path& path) } -const bool POP3Store::isValidFolderName(const folder::path::component& /* name */) +const bool POP3Store::isValidFolderName(const folder::path::component& /* name */) const { return true; } @@ -565,6 +565,12 @@ void POP3Store::unregisterFolder(POP3Folder* folder) } +const int POP3Store::getCapabilities() const +{ + return (CAPABILITY_DELETE_MESSAGE); +} + + // Service infos |