Do not store the attachment limit in the DB.

Bug: 13659097
Change-Id: I384d7866e3dae9c27f9a391d524b3e78e88bd811
(cherry picked from commit b3ee00570b1fac9e841d97e89e9a477d4bff8306)
diff --git a/src/com/android/exchange/eas/EasProvision.java b/src/com/android/exchange/eas/EasProvision.java
index 3fcbcf7..2ee4db6 100644
--- a/src/com/android/exchange/eas/EasProvision.java
+++ b/src/com/android/exchange/eas/EasProvision.java
@@ -177,7 +177,8 @@
 
         // Even before the policy is accepted, we can honor this setting since it has nothing
         // to do with the device policy manager and is requested by the Exchange server.
-        storeMaxAttachmentSize(mPolicy.mMaxAttachmentSize);
+        // TODO: This was an error, this is minimum change to disable it.
+        //storeMaxAttachmentSize(mPolicy.mMaxAttachmentSize);
 
         // Apply the policies (that we support) with the temporary key.
         mPolicy.mProtocolPoliciesUnsupported = null;