1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-14 03:32:22 -05:00

Revert convert absolute IMAP path to relative path, breaks Caldav

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@821 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-11-04 23:44:10 +00:00
parent ec4187a726
commit b357720b7e

View File

@ -1022,11 +1022,6 @@ public class ExchangeSession {
* @return folder path
*/
public String getFolderPath(String folderName) {
// convert absolute IMAP path to relative path
if (folderName.startsWith("/")) {
folderName = folderName.substring(1);
}
String folderPath;
if (folderName.startsWith("INBOX")) {
folderPath = folderName.replaceFirst("INBOX", inboxUrl);