Log reason for append/delete

pull/147/head
M66B 6 years ago
parent 212c73f6d9
commit bc6d08e15e

@ -1827,7 +1827,8 @@ public class ServiceSynchronize extends LifecycleService {
throw new FolderNotFoundException();
IMAPFolder itarget = (IMAPFolder) istore.getFolder(target.name);
if (istore.hasCapability("MOVE") &&
boolean canMove = istore.hasCapability("MOVE");
if (canMove &&
!EntityFolder.DRAFTS.equals(folder.type) &&
!EntityFolder.DRAFTS.equals(target.type)) {
// Autoread
@ -1839,7 +1840,8 @@ public class ServiceSynchronize extends LifecycleService {
// Move message to
ifolder.moveMessages(new Message[]{imessage}, itarget);
} else {
Log.w(folder.name + " MOVE by DELETE/APPEND");
Log.w(folder.name + " MOVE by DELETE/APPEND" +
" cap=" + canMove + " from=" + folder.type + " to=" + target.type);
// Serialize source message
ByteArrayOutputStream bos = new ByteArrayOutputStream();

Loading…
Cancel
Save