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/serviceFactory.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/messaging/serviceFactory.cpp') diff --git a/src/messaging/serviceFactory.cpp b/src/messaging/serviceFactory.cpp index 09bced01..35ff3a98 100644 --- a/src/messaging/serviceFactory.cpp +++ b/src/messaging/serviceFactory.cpp @@ -69,8 +69,9 @@ service* serviceFactory::create if (u.port() != url::UNSPECIFIED_PORT) sess.properties()[serv->infos().propertyPrefix() + "server.port"] = u.port(); - if (!u.path().empty()) - sess.properties()[serv->infos().propertyPrefix() + "server.path"] = u.path(); + // Path portion of the URL is used to point a specific folder (empty = root) + //if (!u.path().empty()) + // sess.properties()[serv->infos().propertyPrefix() + "server.path"] = u.path(); if (!u.username().empty()) { -- cgit v1.2.3