summaryrefslogtreecommitdiffstats
path: root/src/com/android/exchange/eas/EasFolderSync.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/exchange/eas/EasFolderSync.java')
-rw-r--r--src/com/android/exchange/eas/EasFolderSync.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/android/exchange/eas/EasFolderSync.java b/src/com/android/exchange/eas/EasFolderSync.java
index b5e28c14..35e61b8e 100644
--- a/src/com/android/exchange/eas/EasFolderSync.java
+++ b/src/com/android/exchange/eas/EasFolderSync.java
@@ -142,6 +142,12 @@ public class EasFolderSync extends EasOperation {
protocolVersion);
}
+ // Include shared email capabilities in the response
+ // - Eas always have push capability
+ int capabilities = EmailServiceProxy.CAPABILITY_PUSH;
+ mValidationResult.putInt(EmailServiceProxy.SETTINGS_BUNDLE_CAPABILITIES,
+ EmailServiceProxy.CAPABILITY_PUSH);
+
// This is intentionally a call to super.performOperation. This is a helper function for
// our version of perfomOperation so calling that function would infinite loop.
final int result = super.performOperation();