Home | History | Annotate | Download | only in store

Lines Matching refs:ImapConstants

26 import com.android.phone.common.mail.store.imap.ImapConstants;
86 mLoginPhrase = ImapConstants.LOGIN + " " + mImapStore.getUsername() + " "
141 sendCommand(ImapConstants.LOGOUT, false);
142 if (!mParser.readResponse(true).is(0, ImapConstants.BYE)) {
174 if (hasCapability(ImapConstants.CAPABILITY_STARTTLS)) {
175 executeSimpleCommand(ImapConstants.STARTTLS);
188 if (mCapabilities.contains(ImapConstants.CAPABILITY_AUTH_DIGEST_MD5)) {
199 if (ImapConstants.NO.equals(status)) {
201 case ImapConstants.NO_UNKNOWN_USER:
204 case ImapConstants.NO_UNKNOWN_CLIENT:
207 case ImapConstants.NO_INVALID_PASSWORD:
211 case ImapConstants.NO_MAILBOX_NOT_INITIALIZED:
215 case ImapConstants.NO_SERVICE_IS_NOT_PROVISIONED:
219 case ImapConstants.NO_SERVICE_IS_NOT_ACTIVATED:
223 case ImapConstants.NO_USER_IS_BLOCKED:
227 case ImapConstants.NO_APPLICATION_ERROR:
251 ImapConstants.AUTHENTICATE + " " + ImapConstants.AUTH_DIGEST_MD5);
293 List<ImapResponse> responses = executeSimpleCommand(ImapConstants.CAPABILITY);