more renaming.

This commit is contained in:
Jesse Vincent 2008-10-28 02:14:16 +00:00
parent 909ca32afd
commit c7de66484d
23 changed files with 93 additions and 93 deletions

View file

@ -118,7 +118,7 @@ public class MessagingController implements Runnable {
}
catch (Exception e) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "Error running command", e);
Log.v(k9.LOG_TAG, "Error running command", e);
}
}
mBusy = false;
@ -211,7 +211,7 @@ public class MessagingController implements Runnable {
*/
for (Folder localFolder : localFolders) {
String localFolderName = localFolder.getName();
if (localFolderName.equalsIgnoreCase(Email.INBOX) ||
if (localFolderName.equalsIgnoreCase(k9.INBOX) ||
localFolderName.equals(account.getTrashFolderName()) ||
localFolderName.equals(account.getOutboxFolderName()) ||
localFolderName.equals(account.getDraftsFolderName()) ||
@ -293,7 +293,7 @@ public class MessagingController implements Runnable {
mApplication);
LocalFolder localFolder = (LocalFolder) localStore.getFolder(folder);
localFolder.setVisibleLimit(localFolder.getVisibleLimit()
+ Email.VISIBLE_LIMIT_INCREMENT);
+ k9.VISIBLE_LIMIT_INCREMENT);
synchronizeMailbox(account, folder, listener);
}
catch (MessagingException me) {
@ -309,7 +309,7 @@ public class MessagingController implements Runnable {
localStore.resetVisibleLimits();
}
catch (MessagingException e) {
Log.e(Email.LOG_TAG, "Unable to reset visible limits", e);
Log.e(k9.LOG_TAG, "Unable to reset visible limits", e);
}
}
}
@ -402,8 +402,8 @@ public class MessagingController implements Runnable {
Open the folder
Upload any local messages that are marked as PENDING_UPLOAD (Drafts, Sent, Trash)
Get the message count
Get the list of the newest Email.DEFAULT_VISIBLE_LIMIT messages
getMessages(messageCount - Email.DEFAULT_VISIBLE_LIMIT, messageCount)
Get the list of the newest k9.DEFAULT_VISIBLE_LIMIT messages
getMessages(messageCount - k9.DEFAULT_VISIBLE_LIMIT, messageCount)
See if we have each message locally, if not fetch it's flags and envelope
Get and update the unread count for the folder
Update the remote flags of any messages we have locally with an internal date
@ -531,7 +531,7 @@ s * critical data as fast as possible, and then we'll fill in the de
}
}
catch (Exception e) {
Log.e(Email.LOG_TAG,
Log.e(k9.LOG_TAG,
"Error while storing downloaded message.",
e);
}
@ -735,7 +735,7 @@ s * critical data as fast as possible, and then we'll fill in the de
}
catch (Exception e) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "synchronizeMailbox", e);
Log.v(k9.LOG_TAG, "synchronizeMailbox", e);
}
for (MessagingListener l : mListeners) {
l.synchronizeMailboxFailed(
@ -766,7 +766,7 @@ s * critical data as fast as possible, and then we'll fill in the de
}
catch (MessagingException me) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "processPendingCommands", me);
Log.v(k9.LOG_TAG, "processPendingCommands", me);
}
/*
* Ignore any exceptions from the commands. Commands will be processed
@ -1213,7 +1213,7 @@ s * critical data as fast as possible, and then we'll fill in the de
}
catch (MessagingException me) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "", me);
Log.v(k9.LOG_TAG, "", me);
}
for (MessagingListener l : mListeners) {
l.loadAttachmentFailed(account, message, part, tag, me.getMessage());
@ -1400,7 +1400,7 @@ s * critical data as fast as possible, and then we'll fill in the de
catch (Exception e) {
// TODO
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "emptyTrash");
Log.v(k9.LOG_TAG, "emptyTrash");
}
}
}
@ -1432,7 +1432,7 @@ s * critical data as fast as possible, and then we'll fill in the de
}
for (Account account : accounts) {
sendPendingMessagesSynchronous(account);
synchronizeMailboxSynchronous(account, Email.INBOX);
synchronizeMailboxSynchronous(account, k9.INBOX);
}
for (MessagingListener l : mListeners) {
l.checkMailFinished(context, account);
@ -1462,7 +1462,7 @@ s * critical data as fast as possible, and then we'll fill in the de
processPendingCommands(account);
}
catch (MessagingException e) {
Log.e(Email.LOG_TAG, "Unable to save message as draft.", e);
Log.e(k9.LOG_TAG, "Unable to save message as draft.", e);
}
}

View file

@ -116,7 +116,7 @@ public class Preferences {
public void dump() {
if (Config.LOGV) {
for (String key : mSharedPreferences.getAll().keySet()) {
Log.v(Email.LOG_TAG, key + " = " + mSharedPreferences.getAll().get(key));
Log.v(k9.LOG_TAG, key + " = " + mSharedPreferences.getAll().get(key));
}
}
}

View file

@ -25,7 +25,7 @@ import android.widget.AdapterView.AdapterContextMenuInfo;
import android.widget.AdapterView.OnItemClickListener;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.MessagingController;
import com.fsck.k9.Preferences;
import com.fsck.k9.R;
@ -152,7 +152,7 @@ public class Accounts extends ListActivity implements OnItemClickListener, OnCli
// Ignore
}
mSelectedContextAccount.delete(Preferences.getPreferences(Accounts.this));
Email.setServicesEnabled(Accounts.this);
k9.setServicesEnabled(Accounts.this);
refresh();
}
})
@ -269,7 +269,7 @@ public class Accounts extends ListActivity implements OnItemClickListener, OnCli
LocalStore localStore = (LocalStore) Store.getInstance(
account.getLocalStoreUri(),
getApplication());
LocalFolder localFolder = (LocalFolder) localStore.getFolder(Email.INBOX);
LocalFolder localFolder = (LocalFolder) localStore.getFolder(k9.INBOX);
if (localFolder.exists()) {
unreadMessageCount = localFolder.getUnreadMessageCount();
}

View file

@ -10,7 +10,7 @@ import android.widget.CompoundButton;
import android.widget.TextView;
import android.widget.CompoundButton.OnCheckedChangeListener;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Preferences;
import com.fsck.k9.R;
@ -39,17 +39,17 @@ public class Debug extends Activity implements OnCheckedChangeListener {
mVersionView.setText(String.format(getString(R.string.debug_version_fmt).toString(),
getString(R.string.build_number)));
mEnableDebugLoggingView.setChecked(Email.DEBUG);
mEnableSensitiveLoggingView.setChecked(Email.DEBUG_SENSITIVE);
mEnableDebugLoggingView.setChecked(k9.DEBUG);
mEnableSensitiveLoggingView.setChecked(k9.DEBUG_SENSITIVE);
}
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (buttonView.getId() == R.id.debug_logging) {
Email.DEBUG = isChecked;
mPreferences.setEnableDebugLogging(Email.DEBUG);
k9.DEBUG = isChecked;
mPreferences.setEnableDebugLogging(k9.DEBUG);
} else if (buttonView.getId() == R.id.sensitive_logging) {
Email.DEBUG_SENSITIVE = isChecked;
mPreferences.setEnableSensitiveLogging(Email.DEBUG_SENSITIVE);
k9.DEBUG_SENSITIVE = isChecked;
mPreferences.setEnableSensitiveLogging(k9.DEBUG_SENSITIVE);
}
}

View file

@ -33,7 +33,7 @@ import android.widget.Toast;
import android.widget.ExpandableListView.ExpandableListContextMenuInfo;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.MessagingController;
import com.fsck.k9.MessagingListener;
import com.fsck.k9.R;
@ -700,7 +700,7 @@ public class FolderMessageList extends ExpandableListActivity {
}
mHandler.progress(false);
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "listFoldersFailed " + message);
Log.v(k9.LOG_TAG, "listFoldersFailed " + message);
}
}
@ -731,7 +731,7 @@ public class FolderMessageList extends ExpandableListActivity {
mFolders.add(holder);
}
holder.name = folder.getName();
if (holder.name.equalsIgnoreCase(Email.INBOX)) {
if (holder.name.equalsIgnoreCase(k9.INBOX)) {
holder.displayName = getString(R.string.special_mailbox_name_inbox);
}
else {
@ -749,7 +749,7 @@ public class FolderMessageList extends ExpandableListActivity {
folder.close(false);
}
catch (MessagingException me) {
Log.e(Email.LOG_TAG, "Folder.getUnreadMessageCount() failed", me);
Log.e(k9.LOG_TAG, "Folder.getUnreadMessageCount() failed", me);
}
}
@ -763,7 +763,7 @@ public class FolderMessageList extends ExpandableListActivity {
*/
// if (mRestoredState != null) {
// if (Config.LOGV) {
// Log.v(Email.LOG_TAG, "Attempting to restore list state");
// Log.v(k9.LOG_TAG, "Attempting to restore list state");
// }
// Parcelable listViewState =
// mListView.onRestoreInstanceState(mListViewState);
@ -1199,9 +1199,9 @@ public class FolderMessageList extends ExpandableListActivity {
public int compareTo(FolderInfoHolder o) {
String s1 = this.name;
String s2 = o.name;
if (Email.INBOX.equalsIgnoreCase(s1)) {
if (k9.INBOX.equalsIgnoreCase(s1)) {
return -1;
} else if (Email.INBOX.equalsIgnoreCase(s2)) {
} else if (k9.INBOX.equalsIgnoreCase(s2)) {
return 1;
} else
return s1.toUpperCase().compareTo(s2.toUpperCase());
@ -1248,7 +1248,7 @@ public class FolderMessageList extends ExpandableListActivity {
}
catch (MessagingException me) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "Unable to load message info", me);
Log.v(k9.LOG_TAG, "Unable to load message info", me);
}
}
}

View file

@ -37,7 +37,7 @@ import android.widget.Toast;
import android.widget.AutoCompleteTextView.Validator;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.EmailAddressAdapter;
import com.fsck.k9.EmailAddressValidator;
import com.fsck.k9.MessagingController;
@ -379,7 +379,7 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
String type = intent.getType();
Uri stream = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
if (stream != null && type != null) {
if (MimeUtility.mimeTypeMatches(type, Email.ACCEPTABLE_ATTACHMENT_SEND_TYPES)) {
if (MimeUtility.mimeTypeMatches(type, k9.ACCEPTABLE_ATTACHMENT_SEND_TYPES)) {
addAttachment(stream);
}
}
@ -599,7 +599,7 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
message = createMessage();
}
catch (MessagingException me) {
Log.e(Email.LOG_TAG, "Failed to create new message for send or save.", me);
Log.e(k9.LOG_TAG, "Failed to create new message for send or save.", me);
throw new RuntimeException("Failed to create a new message for send or save.", me);
}
@ -699,7 +699,7 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
private void onAddAttachment() {
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType(Email.ACCEPTABLE_ATTACHMENT_SEND_TYPES[0]);
i.setType(k9.ACCEPTABLE_ATTACHMENT_SEND_TYPES[0]);
startActivityForResult(Intent.createChooser(i, null), ACTIVITY_REQUEST_PICK_ATTACHMENT);
}

View file

@ -45,7 +45,7 @@ import android.widget.TextView;
import android.widget.Toast;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.MessagingController;
import com.fsck.k9.MessagingListener;
import com.fsck.k9.R;
@ -623,19 +623,19 @@ public class MessageView extends Activity
Button attachmentDownload = (Button)view.findViewById(R.id.download);
if ((!MimeUtility.mimeTypeMatches(attachment.contentType,
Email.ACCEPTABLE_ATTACHMENT_VIEW_TYPES))
k9.ACCEPTABLE_ATTACHMENT_VIEW_TYPES))
|| (MimeUtility.mimeTypeMatches(attachment.contentType,
Email.UNACCEPTABLE_ATTACHMENT_VIEW_TYPES))) {
k9.UNACCEPTABLE_ATTACHMENT_VIEW_TYPES))) {
attachmentView.setVisibility(View.GONE);
}
if ((!MimeUtility.mimeTypeMatches(attachment.contentType,
Email.ACCEPTABLE_ATTACHMENT_DOWNLOAD_TYPES))
k9.ACCEPTABLE_ATTACHMENT_DOWNLOAD_TYPES))
|| (MimeUtility.mimeTypeMatches(attachment.contentType,
Email.UNACCEPTABLE_ATTACHMENT_DOWNLOAD_TYPES))) {
k9.UNACCEPTABLE_ATTACHMENT_DOWNLOAD_TYPES))) {
attachmentDownload.setVisibility(View.GONE);
}
if (attachment.size > Email.MAX_ATTACHMENT_DOWNLOAD_SIZE) {
if (attachment.size > k9.MAX_ATTACHMENT_DOWNLOAD_SIZE) {
attachmentView.setVisibility(View.GONE);
attachmentDownload.setVisibility(View.GONE);
}
@ -690,7 +690,7 @@ public class MessageView extends Activity
}
catch (MessagingException me) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "loadMessageForViewHeadersAvailable", me);
Log.v(k9.LOG_TAG, "loadMessageForViewHeadersAvailable", me);
}
}
}
@ -747,7 +747,7 @@ public class MessageView extends Activity
}
catch (Exception e) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "loadMessageForViewBodyAvailable", e);
Log.v(k9.LOG_TAG, "loadMessageForViewBodyAvailable", e);
}
}
}

View file

@ -2,7 +2,7 @@
package com.fsck.k9.activity;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Preferences;
import android.app.Activity;
@ -26,7 +26,7 @@ public class Welcome extends Activity {
Account[] accounts = Preferences.getPreferences(this).getAccounts();
if (accounts.length == 1) {
FolderMessageList.actionHandleAccount(this, accounts[0], Email.INBOX);
FolderMessageList.actionHandleAccount(this, accounts[0], k9.INBOX);
} else {
startActivity(new Intent(this, Accounts.class));
}

View file

@ -14,7 +14,7 @@ import android.preference.Preference;
import android.preference.RingtonePreference;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Preferences;
import com.fsck.k9.R;
@ -156,7 +156,7 @@ public class AccountSettings extends PreferenceActivity {
SharedPreferences prefs = mAccountRingtone.getPreferenceManager().getSharedPreferences();
mAccount.setRingtone(prefs.getString(PREFERENCE_RINGTONE, null));
mAccount.save(Preferences.getPreferences(this));
Email.setServicesEnabled(this);
k9.setServicesEnabled(this);
}
@Override

View file

@ -27,7 +27,7 @@ import android.widget.CheckBox;
import android.widget.EditText;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.EmailAddressValidator;
import com.fsck.k9.Preferences;
import com.fsck.k9.R;
@ -262,7 +262,7 @@ public class AccountSetupBasics extends Activity
if (mDefaultView.isChecked()) {
Preferences.getPreferences(this).setDefaultAccount(mAccount);
}
Email.setServicesEnabled(this);
k9.setServicesEnabled(this);
AccountSetupNames.actionSetNames(this, mAccount);
finish();
}
@ -361,7 +361,7 @@ public class AccountSetupBasics extends Activity
}
}
catch (Exception e) {
Log.e(Email.LOG_TAG, "Error while trying to load provider settings.", e);
Log.e(k9.LOG_TAG, "Error while trying to load provider settings.", e);
}
return null;
}

View file

@ -15,7 +15,7 @@ import android.widget.Button;
import android.widget.EditText;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Preferences;
import com.fsck.k9.R;
import com.fsck.k9.Utility;
@ -89,7 +89,7 @@ public class AccountSetupNames extends Activity implements OnClickListener {
}
mAccount.setName(mName.getText().toString());
mAccount.save(Preferences.getPreferences(this));
FolderMessageList.actionHandleAccount(this, mAccount, Email.INBOX);
FolderMessageList.actionHandleAccount(this, mAccount, k9.INBOX);
finish();
}

View file

@ -12,7 +12,7 @@ import android.widget.CheckBox;
import android.widget.Spinner;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Preferences;
import com.fsck.k9.R;
@ -88,7 +88,7 @@ public class AccountSetupOptions extends Activity implements OnClickListener {
if (mDefaultView.isChecked()) {
Preferences.getPreferences(this).setDefaultAccount(mAccount);
}
Email.setServicesEnabled(this);
k9.setServicesEnabled(this);
AccountSetupNames.actionSetNames(this, mAccount);
finish();
}

View file

@ -16,7 +16,7 @@ import org.apache.james.mime4j.field.address.parser.ParseException;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Utility;
import com.fsck.k9.mail.internet.MimeUtility;
@ -74,7 +74,7 @@ public class Address {
Mailbox mailbox = (Mailbox)address;
addresses.add(new Address(mailbox.getLocalPart() + "@" + mailbox.getDomain()));
} else {
Log.e(Email.LOG_TAG, "Unknown address type from Mime4J: "
Log.e(k9.LOG_TAG, "Unknown address type from Mime4J: "
+ address.getClass().toString());
}

View file

@ -13,7 +13,7 @@ import org.apache.commons.io.IOUtils;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.codec.binary.Base64OutputStream;
import com.fsck.k9.mail.Body;
import com.fsck.k9.mail.MessagingException;

View file

@ -15,7 +15,7 @@ import org.apache.james.mime4j.util.CharsetUtil;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.mail.Body;
import com.fsck.k9.mail.BodyPart;
import com.fsck.k9.mail.Message;
@ -176,7 +176,7 @@ public class MimeUtility {
* If we are not able to process the body there's nothing we can do about it. Return
* null and let the upper layers handle the missing content.
*/
Log.e(Email.LOG_TAG, "Unable to getTextFromPart", e);
Log.e(k9.LOG_TAG, "Unable to getTextFromPart", e);
}
return null;
}

View file

@ -14,7 +14,7 @@ import java.util.Date;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.FixedLengthInputStream;
import com.fsck.k9.PeekableInputStream;
import com.fsck.k9.mail.MessagingException;
@ -55,8 +55,8 @@ public class ImapResponseParser {
readTokens(response);
}
if (Config.LOGD) {
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, "<<< " + response.toString());
if (k9.DEBUG) {
Log.d(k9.LOG_TAG, "<<< " + response.toString());
}
}
return response;

View file

@ -31,7 +31,7 @@ import javax.net.ssl.SSLException;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.PeekableInputStream;
import com.fsck.k9.Utility;
import com.fsck.k9.mail.AuthenticationFailedException;
@ -707,7 +707,7 @@ public class ImapStore extends Store {
}
catch (MessagingException e) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "Error handling message", e);
Log.v(k9.LOG_TAG, "Error handling message", e);
}
message.setBody(null);
}
@ -1191,12 +1191,12 @@ public class ImapStore extends Store {
mOut.write('\n');
mOut.flush();
if (Config.LOGD) {
if (Email.DEBUG) {
if (sensitive && !Email.DEBUG_SENSITIVE) {
Log.d(Email.LOG_TAG, ">>> "
if (k9.DEBUG) {
if (sensitive && !k9.DEBUG_SENSITIVE) {
Log.d(k9.LOG_TAG, ">>> "
+ "[Command Hidden, Enable Sensitive Debug Logging To Show]");
} else {
Log.d(Email.LOG_TAG, ">>> " + commandToSend);
Log.d(k9.LOG_TAG, ">>> " + commandToSend);
}
}
}

View file

@ -25,7 +25,7 @@ import android.net.Uri;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Utility;
import com.fsck.k9.codec.binary.Base64OutputStream;
import com.fsck.k9.mail.Address;
@ -85,7 +85,7 @@ public class LocalStore extends Store {
if (mDb.getVersion() != DB_VERSION) {
if (mDb.getVersion() < 18) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, String.format("Upgrading database from %d to %d", mDb
Log.v(k9.LOG_TAG, String.format("Upgrading database from %d to %d", mDb
.getVersion(), 18));
}
mDb.execSQL("DROP TABLE IF EXISTS folders");
@ -233,7 +233,7 @@ public class LocalStore extends Store {
public void resetVisibleLimits() {
ContentValues cv = new ContentValues();
cv.put("visible_limit", Integer.toString(Email.DEFAULT_VISIBLE_LIMIT));
cv.put("visible_limit", Integer.toString(k9.DEFAULT_VISIBLE_LIMIT));
mDb.update("folders", cv, null, null);
}
@ -1100,7 +1100,7 @@ public class LocalStore extends Store {
}
}
catch (MessagingException me) {
Log.e(Email.LOG_TAG, "Unable to update LocalStore unread message count",
Log.e(k9.LOG_TAG, "Unable to update LocalStore unread message count",
me);
throw new RuntimeException(me);
}

View file

@ -24,7 +24,7 @@ import javax.net.ssl.SSLException;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Utility;
import com.fsck.k9.mail.AuthenticationFailedException;
import com.fsck.k9.mail.FetchProfile;
@ -731,8 +731,8 @@ public class Pop3Store extends Store {
} while ((d = mIn.read()) != -1);
String ret = sb.toString();
if (Config.LOGD) {
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, "<<< " + ret);
if (k9.DEBUG) {
Log.d(k9.LOG_TAG, "<<< " + ret);
}
}
return ret;
@ -740,8 +740,8 @@ public class Pop3Store extends Store {
private void writeLine(String s) throws IOException {
if (Config.LOGD) {
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, ">>> " + s);
if (k9.DEBUG) {
Log.d(k9.LOG_TAG, ">>> " + s);
}
}
mOut.write(s.getBytes());

View file

@ -21,7 +21,7 @@ import javax.net.ssl.SSLException;
import android.util.Config;
import android.util.Log;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.PeekableInputStream;
import com.fsck.k9.codec.binary.Base64;
import com.fsck.k9.mail.Address;
@ -144,8 +144,8 @@ public class SmtpTransport extends Transport {
localHost = localAddress.getHostName();
} catch (Exception e) {
if (Config.LOGD) {
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, "Unable to look up localhost");
if (k9.DEBUG) {
Log.d(k9.LOG_TAG, "Unable to look up localhost");
}
}
}
@ -277,8 +277,8 @@ public class SmtpTransport extends Transport {
}
String ret = sb.toString();
if (Config.LOGD) {
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, "<<< " + ret);
if (k9.DEBUG) {
Log.d(k9.LOG_TAG, "<<< " + ret);
}
}
return ret;
@ -286,8 +286,8 @@ public class SmtpTransport extends Transport {
private void writeLine(String s) throws IOException {
if (Config.LOGD) {
if (Email.DEBUG) {
Log.d(Email.LOG_TAG, ">>> " + s);
if (k9.DEBUG) {
Log.d(k9.LOG_TAG, ">>> " + s);
}
}
mOut.write(s.getBytes());

View file

@ -4,7 +4,7 @@ import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import android.util.Config;
import android.util.Log;
@ -22,7 +22,7 @@ public class StatusOutputStream extends FilterOutputStream {
mCount++;
if (Config.LOGV) {
if (mCount % 1024 == 0) {
Log.v(Email.LOG_TAG, "# " + mCount);
Log.v(k9.LOG_TAG, "# " + mCount);
}
}
}

View file

@ -22,7 +22,7 @@ import android.util.Config;
import android.util.Log;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.Utility;
import com.fsck.k9.mail.internet.MimeUtility;

View file

@ -18,7 +18,7 @@ import android.text.TextUtils;
import android.net.Uri;
import com.fsck.k9.Account;
import com.fsck.k9.Email;
import com.fsck.k9.k9;
import com.fsck.k9.MessagingController;
import com.fsck.k9.MessagingListener;
import com.fsck.k9.Preferences;
@ -59,20 +59,20 @@ public class MailService extends Service {
MessagingController.getInstance(getApplication()).addListener(mListener);
if (ACTION_CHECK_MAIL.equals(intent.getAction())) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "***** MailService *****: checking mail");
Log.v(k9.LOG_TAG, "***** MailService *****: checking mail");
}
MessagingController.getInstance(getApplication()).checkMail(this, null, mListener);
}
else if (ACTION_CANCEL.equals(intent.getAction())) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "***** MailService *****: cancel");
Log.v(k9.LOG_TAG, "***** MailService *****: cancel");
}
cancel();
stopSelf(startId);
}
else if (ACTION_RESCHEDULE.equals(intent.getAction())) {
if (Config.LOGV) {
Log.v(Email.LOG_TAG, "***** MailService *****: reschedule");
Log.v(k9.LOG_TAG, "***** MailService *****: reschedule");
}
reschedule();
stopSelf(startId);
@ -170,7 +170,7 @@ public class MailService extends Service {
} else {
Account account1 = accountsWithNewMail.keySet().iterator().next();
int totalNewMails = accountsWithNewMail.get(account1);
Intent i = FolderMessageList.actionHandleAccountIntent(context, account1, Email.INBOX);
Intent i = FolderMessageList.actionHandleAccountIntent(context, account1, k9.INBOX);
PendingIntent pi = PendingIntent.getActivity(context, 0, i, 0);
notif.setLatestEventInfo(context, getString(R.string.notification_new_title),
getString(R.string.notification_new_one_account_fmt, totalNewMails,