From b17ce2a3ebfcccd40f5c470aecdc9790c0b8813a Mon Sep 17 00:00:00 2001 From: "bienvenu%nventure.com" Date: Tue, 22 Mar 2005 18:33:24 +0000 Subject: [PATCH] tagential to fix for 286289 allow copy of folders across servers sr=mscott --- mailnews/base/resources/content/messengerdnd.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailnews/base/resources/content/messengerdnd.js b/mailnews/base/resources/content/messengerdnd.js index 3e404f72b36..ff4986a10ba 100644 --- a/mailnews/base/resources/content/messengerdnd.js +++ b/mailnews/base/resources/content/messengerdnd.js @@ -166,8 +166,8 @@ function CanDropOnFolderTree(index, orientation) //first check these conditions then proceed further debugDump("***isFolderFlavor == true \n"); - // no copy for folder drag - if (dragSession.dragAction == nsIDragService.DRAGDROP_ACTION_COPY) + // no copy for folder drag within a server + if (dragSession.dragAction == nsIDragService.DRAGDROP_ACTION_COPY && sourceServer == targetServer) return false; var canCreateSubfolders = GetFolderAttribute(folderTree, targetResource, "CanCreateSubfolders");