From 8d8233bcc0e465c5fd3057a73e91aae3a8c96476 Mon Sep 17 00:00:00 2001 From: Bao-Long Nguyen-Trong Date: Thu, 11 Feb 2010 05:37:50 +0000 Subject: [PATCH] Store attachment on sd card is now off by default (which is what it should have been in the first place) --- src/com/fsck/k9/Account.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/Account.java b/src/com/fsck/k9/Account.java index 32f831acf..ed8dc465e 100644 --- a/src/com/fsck/k9/Account.java +++ b/src/com/fsck/k9/Account.java @@ -297,7 +297,7 @@ public class Account implements Serializable } mIsSignatureBeforeQuotedText = preferences.getPreferences().getBoolean(mUuid + ".signatureBeforeQuotedText", false); - mStoreAttachmentsOnSdCard = preferences.getPreferences().getBoolean(mUuid + ".storeAttachmentOnSdCard", true); + mStoreAttachmentsOnSdCard = preferences.getPreferences().getBoolean(mUuid + ".storeAttachmentOnSdCard", false); identities = loadIdentities(preferences.getPreferences()); }