diff options
author | Vincent Richard <[email protected]> | 2004-12-16 21:38:47 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-16 21:38:47 +0000 |
commit | a623155270b9009b59149a729a6e37a3b20948cb (patch) | |
tree | 89a578adfca36fe6381d4213e48522083f7dad97 /src/messaging/POP3Store.cpp | |
parent | Added isValidPath() in fileSystemFactory. (diff) | |
download | vmime-a623155270b9009b59149a729a6e37a3b20948cb.tar.gz vmime-a623155270b9009b59149a729a6e37a3b20948cb.zip |
Added store::isValidFolderName().
Diffstat (limited to 'src/messaging/POP3Store.cpp')
-rw-r--r-- | src/messaging/POP3Store.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/messaging/POP3Store.cpp b/src/messaging/POP3Store.cpp index 6d762997..0bc3b6a5 100644 --- a/src/messaging/POP3Store.cpp +++ b/src/messaging/POP3Store.cpp @@ -82,6 +82,12 @@ folder* POP3Store::getFolder(const folder::path& path) } +const bool POP3Store::isValidFolderName(const folder::path::component& /* name */) +{ + return true; +} + + void POP3Store::connect() { if (isConnected()) |