From 0967d3ef5b5137338c37a65181e33ed53525b78b Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Tue, 5 Oct 2004 16:33:54 +0000 Subject: Changed meaning of "path" portion in a URL. This does not specify the root path for "maildir" protocol anymore; instead the "server.rootpath" property is used. The "path" portion can be used to point a specific folder into a mail store (empty = root folder). --- src/messaging/maildirStore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/messaging/maildirStore.cpp') diff --git a/src/messaging/maildirStore.cpp b/src/messaging/maildirStore.cpp index 2e125109..520e6bbb 100644 --- a/src/messaging/maildirStore.cpp +++ b/src/messaging/maildirStore.cpp @@ -80,8 +80,8 @@ void maildirStore::connect() if (isConnected()) throw exceptions::already_connected(); - m_fsPath = platformDependant::getHandler()->getFileSystemFactory()->stringToPath - (session().properties()[infos().propertyPrefix() + "server.path"]); + m_fsPath = platformDependant::getHandler()->getFileSystemFactory()-> + stringToPath(session().properties()[infos().propertyPrefix() + "server.rootpath"]); m_connected = true; } @@ -155,7 +155,7 @@ const std::vector maildirStore::_infos::availableProperties() const { std::vector list; - list.push_back("server.path"); + list.push_back("server.rootpath"); return (list); } -- cgit v1.2.3