2008-11-01 17:32:06 -04:00
|
|
|
|
2008-12-16 18:34:01 -05:00
|
|
|
package com.android.email;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.UUID;
|
|
|
|
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
import com.android.email.mail.Folder;
|
|
|
|
import com.android.email.mail.MessagingException;
|
|
|
|
import com.android.email.mail.Store;
|
|
|
|
import com.android.email.mail.store.LocalStore;
|
|
|
|
import com.android.email.mail.store.LocalStore.LocalFolder;
|
|
|
|
|
|
|
|
import android.app.Application;
|
2008-11-01 17:32:06 -04:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.net.Uri;
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
import android.util.Log;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Account stores all of the settings for a single account defined by the user. It is able to save
|
|
|
|
* and delete itself given a Preferences to work with. Each account is defined by a UUID.
|
|
|
|
*/
|
|
|
|
public class Account implements Serializable {
|
|
|
|
public static final int DELETE_POLICY_NEVER = 0;
|
|
|
|
public static final int DELETE_POLICY_7DAYS = 1;
|
|
|
|
public static final int DELETE_POLICY_ON_DELETE = 2;
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
public static final int DELETE_POLICY_MARK_AS_READ = 3;
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
private static final long serialVersionUID = 2975156672298625121L;
|
|
|
|
|
|
|
|
String mUuid;
|
|
|
|
String mStoreUri;
|
|
|
|
String mLocalStoreUri;
|
|
|
|
String mTransportUri;
|
|
|
|
String mDescription;
|
|
|
|
String mName;
|
|
|
|
String mEmail;
|
|
|
|
String mSignature;
|
|
|
|
String mAlwaysBcc;
|
|
|
|
int mAutomaticCheckIntervalMinutes;
|
2008-12-11 00:25:59 -05:00
|
|
|
int mDisplayCount;
|
2008-11-01 17:32:06 -04:00
|
|
|
long mLastAutomaticCheckTime;
|
|
|
|
boolean mNotifyNewMail;
|
|
|
|
String mDraftsFolderName;
|
|
|
|
String mSentFolderName;
|
|
|
|
String mTrashFolderName;
|
|
|
|
String mOutboxFolderName;
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
FolderMode mFolderDisplayMode;
|
|
|
|
FolderMode mFolderSyncMode;
|
2008-11-01 17:32:06 -04:00
|
|
|
int mAccountNumber;
|
|
|
|
boolean mVibrate;
|
|
|
|
String mRingtoneUri;
|
2009-01-18 11:42:55 -05:00
|
|
|
boolean mNotifySync;
|
2009-01-19 09:54:05 -05:00
|
|
|
boolean mHideMessageViewButtons = false;
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
|
|
|
|
public enum FolderMode {
|
|
|
|
ALL, FIRST_CLASS, FIRST_AND_SECOND_CLASS, NOT_SECOND_CLASS;
|
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* <pre>
|
|
|
|
* 0 Never
|
|
|
|
* 1 After 7 days
|
|
|
|
* 2 When I delete from inbox
|
|
|
|
* </pre>
|
|
|
|
*/
|
|
|
|
int mDeletePolicy;
|
|
|
|
|
|
|
|
public Account(Context context) {
|
|
|
|
// TODO Change local store path to something readable / recognizable
|
|
|
|
mUuid = UUID.randomUUID().toString();
|
|
|
|
mLocalStoreUri = "local://localhost/" + context.getDatabasePath(mUuid + ".db");
|
|
|
|
mAutomaticCheckIntervalMinutes = -1;
|
2008-12-11 00:25:59 -05:00
|
|
|
mDisplayCount = -1;
|
2008-11-01 17:32:06 -04:00
|
|
|
mAccountNumber = -1;
|
|
|
|
mNotifyNewMail = true;
|
2009-01-18 11:42:55 -05:00
|
|
|
mNotifySync = true;
|
2008-11-01 17:32:06 -04:00
|
|
|
mSignature = "Sent from my Android phone with K-9. Please excuse my brevity.";
|
|
|
|
mVibrate = false;
|
2009-01-02 20:47:24 -05:00
|
|
|
mFolderDisplayMode = FolderMode.NOT_SECOND_CLASS;
|
|
|
|
mFolderSyncMode = FolderMode.FIRST_CLASS;
|
2008-11-01 17:32:06 -04:00
|
|
|
mRingtoneUri = "content://settings/system/notification_sound";
|
|
|
|
}
|
|
|
|
|
|
|
|
Account(Preferences preferences, String uuid) {
|
|
|
|
this.mUuid = uuid;
|
|
|
|
refresh(preferences);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refresh the account from the stored settings.
|
|
|
|
*/
|
|
|
|
public void refresh(Preferences preferences) {
|
|
|
|
mStoreUri = Utility.base64Decode(preferences.mSharedPreferences.getString(mUuid
|
|
|
|
+ ".storeUri", null));
|
|
|
|
mLocalStoreUri = preferences.mSharedPreferences.getString(mUuid + ".localStoreUri", null);
|
|
|
|
mTransportUri = Utility.base64Decode(preferences.mSharedPreferences.getString(mUuid
|
|
|
|
+ ".transportUri", null));
|
|
|
|
mDescription = preferences.mSharedPreferences.getString(mUuid + ".description", null);
|
|
|
|
mAlwaysBcc = preferences.mSharedPreferences.getString(mUuid + ".alwaysBcc", mAlwaysBcc);
|
|
|
|
mName = preferences.mSharedPreferences.getString(mUuid + ".name", mName);
|
|
|
|
mEmail = preferences.mSharedPreferences.getString(mUuid + ".email", mEmail);
|
|
|
|
mSignature = preferences.mSharedPreferences.getString(mUuid + ".signature", mSignature);
|
|
|
|
mAutomaticCheckIntervalMinutes = preferences.mSharedPreferences.getInt(mUuid
|
|
|
|
+ ".automaticCheckIntervalMinutes", -1);
|
2008-12-11 00:25:59 -05:00
|
|
|
mDisplayCount = preferences.mSharedPreferences.getInt(mUuid + ".displayCount", -1);
|
2008-11-01 17:32:06 -04:00
|
|
|
mLastAutomaticCheckTime = preferences.mSharedPreferences.getLong(mUuid
|
|
|
|
+ ".lastAutomaticCheckTime", 0);
|
|
|
|
mNotifyNewMail = preferences.mSharedPreferences.getBoolean(mUuid + ".notifyNewMail",
|
|
|
|
false);
|
2009-01-18 11:42:55 -05:00
|
|
|
mNotifySync = preferences.mSharedPreferences.getBoolean(mUuid + ".notifyMailCheck",
|
|
|
|
false);
|
2008-11-01 17:32:06 -04:00
|
|
|
mDeletePolicy = preferences.mSharedPreferences.getInt(mUuid + ".deletePolicy", 0);
|
|
|
|
mDraftsFolderName = preferences.mSharedPreferences.getString(mUuid + ".draftsFolderName",
|
|
|
|
"Drafts");
|
|
|
|
mSentFolderName = preferences.mSharedPreferences.getString(mUuid + ".sentFolderName",
|
|
|
|
"Sent");
|
|
|
|
mTrashFolderName = preferences.mSharedPreferences.getString(mUuid + ".trashFolderName",
|
|
|
|
"Trash");
|
|
|
|
mOutboxFolderName = preferences.mSharedPreferences.getString(mUuid + ".outboxFolderName",
|
|
|
|
"Outbox");
|
|
|
|
mAccountNumber = preferences.mSharedPreferences.getInt(mUuid + ".accountNumber", 0);
|
|
|
|
mVibrate = preferences.mSharedPreferences.getBoolean(mUuid + ".vibrate", false);
|
2009-01-19 09:54:05 -05:00
|
|
|
mHideMessageViewButtons = preferences.mSharedPreferences.getBoolean(mUuid + ".hideButtons", false);
|
2008-11-01 17:32:06 -04:00
|
|
|
mRingtoneUri = preferences.mSharedPreferences.getString(mUuid + ".ringtone",
|
|
|
|
"content://settings/system/notification_sound");
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
try
|
|
|
|
{
|
|
|
|
mFolderDisplayMode = FolderMode.valueOf(preferences.mSharedPreferences.getString(mUuid + ".folderDisplayMode",
|
|
|
|
FolderMode.NOT_SECOND_CLASS.name()));
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2009-01-02 20:47:24 -05:00
|
|
|
mFolderDisplayMode = FolderMode.NOT_SECOND_CLASS;
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
mFolderSyncMode = FolderMode.valueOf(preferences.mSharedPreferences.getString(mUuid + ".folderSyncMode",
|
|
|
|
FolderMode.FIRST_CLASS.name()));
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2009-01-02 20:47:24 -05:00
|
|
|
mFolderSyncMode = FolderMode.FIRST_CLASS;
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
}
|
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getUuid() {
|
|
|
|
return mUuid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getStoreUri() {
|
|
|
|
return mStoreUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setStoreUri(String storeUri) {
|
|
|
|
this.mStoreUri = storeUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTransportUri() {
|
|
|
|
return mTransportUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTransportUri(String transportUri) {
|
|
|
|
this.mTransportUri = transportUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
return mDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDescription(String description) {
|
|
|
|
this.mDescription = description;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
this.mName = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSignature() {
|
|
|
|
return mSignature;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSignature(String signature) {
|
|
|
|
this.mSignature = signature;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEmail() {
|
|
|
|
return mEmail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEmail(String email) {
|
|
|
|
this.mEmail = email;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAlwaysBcc() {
|
|
|
|
return mAlwaysBcc;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAlwaysBcc(String alwaysBcc) {
|
|
|
|
this.mAlwaysBcc = alwaysBcc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isVibrate() {
|
|
|
|
return mVibrate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setVibrate(boolean vibrate) {
|
|
|
|
mVibrate = vibrate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getRingtone() {
|
|
|
|
return mRingtoneUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setRingtone(String ringtoneUri) {
|
|
|
|
mRingtoneUri = ringtoneUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void delete(Preferences preferences) {
|
|
|
|
String[] uuids = preferences.mSharedPreferences.getString("accountUuids", "").split(",");
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
for (int i = 0, length = uuids.length; i < length; i++) {
|
|
|
|
if (!uuids[i].equals(mUuid)) {
|
|
|
|
if (sb.length() > 0) {
|
|
|
|
sb.append(',');
|
|
|
|
}
|
|
|
|
sb.append(uuids[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
String accountUuids = sb.toString();
|
|
|
|
SharedPreferences.Editor editor = preferences.mSharedPreferences.edit();
|
|
|
|
editor.putString("accountUuids", accountUuids);
|
|
|
|
|
|
|
|
editor.remove(mUuid + ".storeUri");
|
|
|
|
editor.remove(mUuid + ".localStoreUri");
|
|
|
|
editor.remove(mUuid + ".transportUri");
|
|
|
|
editor.remove(mUuid + ".description");
|
|
|
|
editor.remove(mUuid + ".name");
|
|
|
|
editor.remove(mUuid + ".email");
|
|
|
|
editor.remove(mUuid + ".alwaysBcc");
|
|
|
|
editor.remove(mUuid + ".automaticCheckIntervalMinutes");
|
|
|
|
editor.remove(mUuid + ".lastAutomaticCheckTime");
|
|
|
|
editor.remove(mUuid + ".notifyNewMail");
|
|
|
|
editor.remove(mUuid + ".deletePolicy");
|
|
|
|
editor.remove(mUuid + ".draftsFolderName");
|
|
|
|
editor.remove(mUuid + ".sentFolderName");
|
|
|
|
editor.remove(mUuid + ".trashFolderName");
|
|
|
|
editor.remove(mUuid + ".outboxFolderName");
|
|
|
|
editor.remove(mUuid + ".accountNumber");
|
|
|
|
editor.remove(mUuid + ".vibrate");
|
|
|
|
editor.remove(mUuid + ".ringtone");
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
editor.remove(mUuid + ".lastFullSync");
|
|
|
|
editor.remove(mUuid + ".folderDisplayMode");
|
|
|
|
editor.remove(mUuid + ".folderSyncMode");
|
2009-01-19 09:54:05 -05:00
|
|
|
editor.remove(mUuid + ".hideButtons");
|
2008-11-01 17:32:06 -04:00
|
|
|
editor.commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void save(Preferences preferences) {
|
2009-01-09 01:13:28 -05:00
|
|
|
SharedPreferences.Editor editor = preferences.mSharedPreferences.edit();
|
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
if (!preferences.mSharedPreferences.getString("accountUuids", "").contains(mUuid)) {
|
|
|
|
/*
|
|
|
|
* When the account is first created we assign it a unique account number. The
|
|
|
|
* account number will be unique to that account for the lifetime of the account.
|
|
|
|
* So, we get all the existing account numbers, sort them ascending, loop through
|
|
|
|
* the list and check if the number is greater than 1 + the previous number. If so
|
|
|
|
* we use the previous number + 1 as the account number. This refills gaps.
|
|
|
|
* mAccountNumber starts as -1 on a newly created account. It must be -1 for this
|
|
|
|
* algorithm to work.
|
|
|
|
*
|
|
|
|
* I bet there is a much smarter way to do this. Anyone like to suggest it?
|
|
|
|
*/
|
|
|
|
Account[] accounts = preferences.getAccounts();
|
|
|
|
int[] accountNumbers = new int[accounts.length];
|
|
|
|
for (int i = 0; i < accounts.length; i++) {
|
|
|
|
accountNumbers[i] = accounts[i].getAccountNumber();
|
|
|
|
}
|
|
|
|
Arrays.sort(accountNumbers);
|
|
|
|
for (int accountNumber : accountNumbers) {
|
|
|
|
if (accountNumber > mAccountNumber + 1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mAccountNumber = accountNumber;
|
|
|
|
}
|
|
|
|
mAccountNumber++;
|
|
|
|
|
|
|
|
String accountUuids = preferences.mSharedPreferences.getString("accountUuids", "");
|
|
|
|
accountUuids += (accountUuids.length() != 0 ? "," : "") + mUuid;
|
2009-01-09 01:13:28 -05:00
|
|
|
// SharedPreferences.Editor editor = preferences.mSharedPreferences.edit();
|
2008-11-01 17:32:06 -04:00
|
|
|
editor.putString("accountUuids", accountUuids);
|
2009-01-09 01:13:28 -05:00
|
|
|
// editor.commit();
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
2009-01-09 01:13:28 -05:00
|
|
|
// SharedPreferences.Editor editor = preferences.mSharedPreferences.edit();
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
editor.putString(mUuid + ".storeUri", Utility.base64Encode(mStoreUri));
|
|
|
|
editor.putString(mUuid + ".localStoreUri", mLocalStoreUri);
|
|
|
|
editor.putString(mUuid + ".transportUri", Utility.base64Encode(mTransportUri));
|
|
|
|
editor.putString(mUuid + ".description", mDescription);
|
|
|
|
editor.putString(mUuid + ".name", mName);
|
|
|
|
editor.putString(mUuid + ".email", mEmail);
|
|
|
|
editor.putString(mUuid + ".signature", mSignature);
|
|
|
|
editor.putString(mUuid + ".alwaysBcc", mAlwaysBcc);
|
|
|
|
editor.putInt(mUuid + ".automaticCheckIntervalMinutes", mAutomaticCheckIntervalMinutes);
|
2008-12-11 00:25:59 -05:00
|
|
|
editor.putInt(mUuid + ".displayCount", mDisplayCount);
|
2008-11-01 17:32:06 -04:00
|
|
|
editor.putLong(mUuid + ".lastAutomaticCheckTime", mLastAutomaticCheckTime);
|
|
|
|
editor.putBoolean(mUuid + ".notifyNewMail", mNotifyNewMail);
|
2009-01-18 11:42:55 -05:00
|
|
|
editor.putBoolean(mUuid + ".notifyMailCheck", mNotifySync);
|
2008-11-01 17:32:06 -04:00
|
|
|
editor.putInt(mUuid + ".deletePolicy", mDeletePolicy);
|
|
|
|
editor.putString(mUuid + ".draftsFolderName", mDraftsFolderName);
|
|
|
|
editor.putString(mUuid + ".sentFolderName", mSentFolderName);
|
|
|
|
editor.putString(mUuid + ".trashFolderName", mTrashFolderName);
|
|
|
|
editor.putString(mUuid + ".outboxFolderName", mOutboxFolderName);
|
|
|
|
editor.putInt(mUuid + ".accountNumber", mAccountNumber);
|
|
|
|
editor.putBoolean(mUuid + ".vibrate", mVibrate);
|
2009-01-19 09:54:05 -05:00
|
|
|
editor.putBoolean(mUuid + ".hideButtons", mHideMessageViewButtons);
|
2008-11-01 17:32:06 -04:00
|
|
|
editor.putString(mUuid + ".ringtone", mRingtoneUri);
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
editor.putString(mUuid + ".folderDisplayMode", mFolderDisplayMode.name());
|
|
|
|
editor.putString(mUuid + ".folderSyncMode", mFolderSyncMode.name());
|
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
editor.commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return mDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Uri getContentUri() {
|
|
|
|
return Uri.parse("content://accounts/" + getUuid());
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getLocalStoreUri() {
|
|
|
|
return mLocalStoreUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLocalStoreUri(String localStoreUri) {
|
|
|
|
this.mLocalStoreUri = localStoreUri;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns -1 for never.
|
|
|
|
*/
|
|
|
|
public int getAutomaticCheckIntervalMinutes() {
|
|
|
|
return mAutomaticCheckIntervalMinutes;
|
|
|
|
}
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
|
|
|
|
public int getUnreadMessageCount(Context context, Application application) throws MessagingException
|
|
|
|
{
|
|
|
|
int unreadMessageCount = 0;
|
|
|
|
LocalStore localStore = (LocalStore) Store.getInstance(
|
|
|
|
getLocalStoreUri(),
|
|
|
|
application);
|
|
|
|
Account.FolderMode aMode = getFolderDisplayMode();
|
|
|
|
Preferences prefs = Preferences.getPreferences(context);
|
|
|
|
for (LocalFolder folder : localStore.getPersonalNamespaces())
|
|
|
|
{
|
|
|
|
folder.refresh(prefs);
|
|
|
|
Folder.FolderClass fMode = folder.getDisplayClass();
|
|
|
|
|
|
|
|
if (folder.getName().equals(getTrashFolderName()) == false &&
|
|
|
|
folder.getName().equals(getDraftsFolderName()) == false &&
|
|
|
|
folder.getName().equals(getOutboxFolderName()) == false &&
|
|
|
|
folder.getName().equals(getSentFolderName()) == false &&
|
|
|
|
folder.getName().equals(getErrorFolderName()) == false)
|
|
|
|
{
|
|
|
|
if (aMode == Account.FolderMode.FIRST_CLASS &&
|
|
|
|
fMode != Folder.FolderClass.FIRST_CLASS)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (aMode == Account.FolderMode.FIRST_AND_SECOND_CLASS &&
|
|
|
|
fMode != Folder.FolderClass.FIRST_CLASS &&
|
|
|
|
fMode != Folder.FolderClass.SECOND_CLASS)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (aMode == Account.FolderMode.NOT_SECOND_CLASS &&
|
|
|
|
fMode == Folder.FolderClass.SECOND_CLASS)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
unreadMessageCount += folder.getUnreadMessageCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return unreadMessageCount;
|
|
|
|
|
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
|
2008-12-11 00:25:59 -05:00
|
|
|
public int getDisplayCount() {
|
|
|
|
if (mDisplayCount == -1) {
|
2008-12-16 18:34:01 -05:00
|
|
|
this.mDisplayCount = Email.DEFAULT_VISIBLE_LIMIT;
|
2008-12-11 00:25:59 -05:00
|
|
|
}
|
|
|
|
return mDisplayCount;
|
|
|
|
}
|
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
/**
|
|
|
|
* @param automaticCheckIntervalMinutes or -1 for never.
|
|
|
|
*/
|
|
|
|
public void setAutomaticCheckIntervalMinutes(int automaticCheckIntervalMinutes) {
|
|
|
|
this.mAutomaticCheckIntervalMinutes = automaticCheckIntervalMinutes;
|
|
|
|
}
|
|
|
|
|
2008-12-11 00:25:59 -05:00
|
|
|
/**
|
|
|
|
* @param displayCount
|
|
|
|
*/
|
|
|
|
public void setDisplayCount(int displayCount) {
|
|
|
|
if (displayCount != -1) {
|
|
|
|
this.mDisplayCount = displayCount;
|
|
|
|
} else {
|
2008-12-16 18:34:01 -05:00
|
|
|
this.mDisplayCount = Email.DEFAULT_VISIBLE_LIMIT;
|
2008-12-11 00:25:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
public long getLastAutomaticCheckTime() {
|
|
|
|
return mLastAutomaticCheckTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLastAutomaticCheckTime(long lastAutomaticCheckTime) {
|
|
|
|
this.mLastAutomaticCheckTime = lastAutomaticCheckTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isNotifyNewMail() {
|
|
|
|
return mNotifyNewMail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setNotifyNewMail(boolean notifyNewMail) {
|
|
|
|
this.mNotifyNewMail = notifyNewMail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDeletePolicy() {
|
|
|
|
return mDeletePolicy;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDeletePolicy(int deletePolicy) {
|
|
|
|
this.mDeletePolicy = deletePolicy;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDraftsFolderName() {
|
|
|
|
return mDraftsFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDraftsFolderName(String draftsFolderName) {
|
|
|
|
mDraftsFolderName = draftsFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSentFolderName() {
|
|
|
|
return mSentFolderName;
|
|
|
|
}
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
|
|
|
|
public String getErrorFolderName()
|
|
|
|
{
|
|
|
|
return Email.ERROR_FOLDER_NAME;
|
|
|
|
}
|
2008-11-01 17:32:06 -04:00
|
|
|
|
|
|
|
public void setSentFolderName(String sentFolderName) {
|
|
|
|
mSentFolderName = sentFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTrashFolderName() {
|
|
|
|
return mTrashFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTrashFolderName(String trashFolderName) {
|
|
|
|
mTrashFolderName = trashFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOutboxFolderName() {
|
|
|
|
return mOutboxFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOutboxFolderName(String outboxFolderName) {
|
|
|
|
mOutboxFolderName = outboxFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getAccountNumber() {
|
|
|
|
return mAccountNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
if (o instanceof Account) {
|
|
|
|
return ((Account)o).mUuid.equals(mUuid);
|
|
|
|
}
|
|
|
|
return super.equals(o);
|
|
|
|
}
|
Complete merge of DAmail functionality into K9mail. Following
features are added to K9mail:
1) Show unread message count on each folder
2) Sum unread count of all shown folders in an account to the account display
3) Periodically check selected folders for new mail, not just Inbox
4) Don't refresh folder when opened (unless folder is empty)
5) Show date and time of last sync for each folder
6) Fix timer for automatic periodic sync (use wakelock to assure completion)
7) Optimize local folder queries (speeds up account and folder lists)
8) Show Loading... message in status bar indicating which folder is being synced
9) Eliminate redundant sync of new messages (performance enhancement)
10) Improve notification text for multiple accounts
11) Do not automatically sync folders more often than the account-specific period
12) Use user-configured date and time formats
13) Select which folders are shown, using configurable Classes
14) Select which folders are synced, using configurable Classes
15) Added context (long press) menu to folders, to provide for Refresh
and Folder Settings
16) Status light flashes purple when there are unread messages
17) Folder list more quickly eliminates display of deleted and out-of-Class folders.
18) Delete works
19) Mark all messages as read (in the folder context menu)
20) Notifications only for new unread messages
21) One minute synchronization frequency
22) Deleting an unread message decrements unread counter
23) Notifications work for POP3 accounts
24) Message deletes work for POP3 accounts
25) Explicit errors show in folder list
26) Stack traces saved to folder K9mail-errors
27) Clear pending actions (danger, for emergencies only!)
28) Delete policy in Account settings
29) DNS cache in InetAddress disabled
30) Trapped some crash-causing error conditions
31) Eliminate duplicate copies to Sent folder
32) Prevent crashes due to message listener concurrency
33) Empty Trash
34) Nuclear "Mark all messages as read" (marks all messages as read in
server-side folder, irrespective of which messages have been downloaded)
35) Forward (alternate) to allow forwarding email through other programs
36) Accept text/plain Intents to allow other programs to send email through K9mail
37) Displays Outbox sending status
38) Manual retry of outbox sending when "Refresh"ing Outbox
39) Folder error status is persisted
40) Ability to log to arbitrary file
Fixes K9 issues 11, 23, 24, 65, 69, 71, 79, 81, 82, 83, 87, 101, 104,
107, 120, 148, 154
2008-12-30 22:49:09 -05:00
|
|
|
|
|
|
|
public FolderMode getFolderDisplayMode()
|
|
|
|
{
|
|
|
|
return mFolderDisplayMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFolderDisplayMode(FolderMode displayMode)
|
|
|
|
{
|
|
|
|
mFolderDisplayMode = displayMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public FolderMode getFolderSyncMode()
|
|
|
|
{
|
|
|
|
return mFolderSyncMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFolderSyncMode(FolderMode syncMode)
|
|
|
|
{
|
|
|
|
mFolderSyncMode = syncMode;
|
|
|
|
}
|
|
|
|
|
2009-01-13 00:52:37 -05:00
|
|
|
public boolean isShowOngoing()
|
|
|
|
{
|
2009-01-18 11:42:55 -05:00
|
|
|
return mNotifySync;
|
2009-01-13 00:52:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setShowOngoing(boolean showOngoing)
|
|
|
|
{
|
2009-01-18 11:42:55 -05:00
|
|
|
this.mNotifySync = showOngoing;
|
2009-01-13 00:52:37 -05:00
|
|
|
}
|
|
|
|
|
2009-01-19 09:54:05 -05:00
|
|
|
public boolean isHideMessageViewButtons()
|
|
|
|
{
|
|
|
|
return mHideMessageViewButtons;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHideMessageViewButtons(boolean hideMessageViewButtons)
|
|
|
|
{
|
|
|
|
mHideMessageViewButtons = hideMessageViewButtons;
|
|
|
|
}
|
|
|
|
|
2008-11-01 17:32:06 -04:00
|
|
|
}
|