EWS: adjust declined item handling

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2291 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2014-05-30 12:54:28 +00:00
parent ffac479e60
commit d4ef2392ab
1 changed files with 4 additions and 5 deletions

View File

@ -730,7 +730,7 @@ public class EwsExchangeSession extends ExchangeSession {
return searchItems(folderPath, attributes, condition, folderQueryTraversal); return searchItems(folderPath, attributes, condition, folderQueryTraversal);
} }
// limited search, do not use paged search, limit with maxCount, sort by imapUid descending to get latest items // limited search, do not use paged search, limit with maxCount, sort by imapUid descending to get latest items
int resultCount = 0; int resultCount;
List<EWSMethod.Item> results = new ArrayList<EWSMethod.Item>(); List<EWSMethod.Item> results = new ArrayList<EWSMethod.Item>();
FindItemMethod findItemMethod; FindItemMethod findItemMethod;
@ -1633,10 +1633,9 @@ public class EwsExchangeSession extends ExchangeSession {
String ownerPartStat = property.getParamValue("PARTSTAT"); String ownerPartStat = property.getParamValue("PARTSTAT");
if ("ACCEPTED".equals(ownerPartStat)) { if ("ACCEPTED".equals(ownerPartStat)) {
ownerResponseReply = "AcceptItem"; ownerResponseReply = "AcceptItem";
// do not send DeclineItem to avoid deleting target event // do not send DeclineItem to avoid deleting target event
//} else if ("DECLINED".equals(ownerPartStat)) { } else if ("DECLINED".equals(ownerPartStat) ||
// ownerResponseReply = "DeclineItem"; "TENTATIVE".equals(ownerPartStat)) {
} else if ("TENTATIVE".equals(ownerPartStat)) {
ownerResponseReply = "TentativelyAcceptItem"; ownerResponseReply = "TentativelyAcceptItem";
} }
} }