mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Instructions for 535 5.7.3 Authentication unsuccessful
This commit is contained in:
parent
073ac5fb61
commit
3b129ff696
4 changed files with 16 additions and 3 deletions
|
@ -1023,8 +1023,14 @@ public class FragmentOAuth extends FragmentBase {
|
|||
grpError.setVisibility(View.VISIBLE);
|
||||
|
||||
if (EntityAccount.isOutlook(id)) {
|
||||
if (ex instanceof AuthenticationFailedException)
|
||||
if (ex instanceof AuthenticationFailedException) {
|
||||
if (ex.getMessage() != null &&
|
||||
ex.getMessage().contains("535 5.7.3 Authentication unsuccessful"))
|
||||
tvOfficeAuthHint.setText(R.string.title_setup_office_auth_5_7_3);
|
||||
else
|
||||
tvOfficeAuthHint.setText(R.string.title_setup_office_auth);
|
||||
tvOfficeAuthHint.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
||||
EmailProvider provider;
|
||||
|
|
|
@ -225,8 +225,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="@string/title_setup_office_auth"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
android:textStyle="italic"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tvError" />
|
||||
|
||||
|
|
|
@ -229,6 +229,7 @@
|
|||
<string name="title_setup_gmail_on_device">Why do I need to select an on-device account?</string>
|
||||
<string name="title_setup_gmail_password">I want to authorize an account with a password instead of an on-device account</string>
|
||||
<string name="title_setup_office_auth">The error \'AUTHENTICATE failed\' can be caused by IMAP/SMTP being disabled by the system administrator</string>
|
||||
<string name="title_setup_office_auth_5_7_3">Please try the quick setup wizard for "Other provider".</string>
|
||||
<string name="title_setup_oauth_rationale">Authorize access to your %1$s account</string>
|
||||
<string name="title_setup_oauth_update">Authorize an existing account again (otherwise create a new account)</string>
|
||||
<string name="title_setup_oauth_updated">Account authorization was updated</string>
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
</provider>
|
||||
<provider
|
||||
name="Outlook"
|
||||
documentation="You may need to use <a href="https://support.microsoft.com/en-us/account-billing/using-app-passwords-with-apps-that-don-t-support-two-step-verification-5896ed9b-4263-e681-128a-a6f2979a7944">an app password</a>."
|
||||
domain="outlook\\..*"
|
||||
link="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq14"
|
||||
maxtls="1.2"
|
||||
|
@ -60,6 +61,7 @@
|
|||
</provider>
|
||||
<provider
|
||||
name="Live"
|
||||
documentation="You may need to use <a href="https://support.microsoft.com/en-us/account-billing/using-app-passwords-with-apps-that-don-t-support-two-step-verification-5896ed9b-4263-e681-128a-a6f2979a7944">an app password</a>."
|
||||
domain="live\\..*"
|
||||
link="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq14"
|
||||
maxtls="1.2"
|
||||
|
@ -78,6 +80,7 @@
|
|||
</provider>
|
||||
<provider
|
||||
name="Hotmail"
|
||||
documentation="You may need to use <a href="https://support.microsoft.com/en-us/account-billing/using-app-passwords-with-apps-that-don-t-support-two-step-verification-5896ed9b-4263-e681-128a-a6f2979a7944">an app password</a>."
|
||||
domain="hotmail\\..*"
|
||||
link="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq14"
|
||||
maxtls="1.2"
|
||||
|
@ -111,6 +114,7 @@
|
|||
<provider
|
||||
name="Outlook"
|
||||
description="Outlook/Office 365"
|
||||
documentation="You may need to use <a href="https://support.microsoft.com/en-us/account-billing/using-app-passwords-with-apps-that-don-t-support-two-step-verification-5896ed9b-4263-e681-128a-a6f2979a7944">an app password</a>."
|
||||
enabled="false"
|
||||
id="office365"
|
||||
link="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq14"
|
||||
|
@ -151,6 +155,7 @@
|
|||
<provider
|
||||
name="Outlook"
|
||||
description="Outlook/Office 365"
|
||||
documentation="You may need to use <a href="https://support.microsoft.com/en-us/account-billing/using-app-passwords-with-apps-that-don-t-support-two-step-verification-5896ed9b-4263-e681-128a-a6f2979a7944">an app password</a>."
|
||||
id="office365pcke"
|
||||
link="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq14"
|
||||
maxtls="1.2"
|
||||
|
@ -190,6 +195,7 @@
|
|||
alt="true"
|
||||
debug="true"
|
||||
description="Outlook/Office 365 (alt)"
|
||||
documentation="You may need to use <a href="https://support.microsoft.com/en-us/account-billing/using-app-passwords-with-apps-that-don-t-support-two-step-verification-5896ed9b-4263-e681-128a-a6f2979a7944">an app password</a>."
|
||||
id="outlook"
|
||||
link="https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq14"
|
||||
maxtls="1.2"
|
||||
|
|
Loading…
Reference in a new issue