Merge "Handle redirection during validation." into jb-ub-mail-ur10

This commit is contained in:
Yu Ping Hu 2013-05-23 22:52:38 +00:00 committed by Android (Google) Code Review
commit fb6a74b5e0
2 changed files with 6 additions and 0 deletions

View File

@ -60,6 +60,7 @@ public class EmailServiceProxy extends ServiceProxy implements IEmailService {
public static final String VALIDATE_BUNDLE_UNSUPPORTED_POLICIES =
"validate_unsupported_policies";
public static final String VALIDATE_BUNDLE_PROTOCOL_VERSION = "validate_protocol_version";
public static final String VALIDATE_BUNDLE_REDIRECT_ADDRESS = "validate_redirect_address";
private final IEmailServiceCallback mCallback;
private Object mReturn = null;

View File

@ -477,6 +477,11 @@ public class AccountCheckSettingsFragment extends Fragment {
EmailServiceProxy.VALIDATE_BUNDLE_PROTOCOL_VERSION);
resultCode = bundle.getInt(
EmailServiceProxy.VALIDATE_BUNDLE_RESULT_CODE);
final String redirectAddress = bundle.getString(
EmailServiceProxy.VALIDATE_BUNDLE_REDIRECT_ADDRESS, null);
if (redirectAddress != null) {
mAccount.mHostAuthRecv.mAddress = redirectAddress;
}
// Only show "policies required" if this is a new account setup
if (resultCode == MessagingException.SECURITY_POLICIES_REQUIRED &&
mAccount.isSaved()) {