From 4afc7f659b424b1a2660a52acf1c4e276f30cbcc Mon Sep 17 00:00:00 2001 From: M66B Date: Mon, 5 Aug 2019 11:14:28 +0200 Subject: [PATCH] Crowdin sync, localized setup instructions --- .gitignore | 1 - app/build.gradle | 19 ++++++ app/src/main/assets/ATTRIBUTION.md | 20 ++++++ app/src/main/assets/PRIVACY.md | 18 +++++ app/src/main/assets/SETUP-af.md | 41 ++++++++++++ app/src/main/assets/SETUP-ar-BH.md | 41 ++++++++++++ app/src/main/assets/SETUP-ar-EG.md | 41 ++++++++++++ app/src/main/assets/SETUP-ar-SA.md | 41 ++++++++++++ app/src/main/assets/SETUP-ar-YE.md | 41 ++++++++++++ app/src/main/assets/SETUP-ar.md | 41 ++++++++++++ app/src/main/assets/SETUP-az.md | 41 ++++++++++++ app/src/main/assets/SETUP-ca.md | 41 ++++++++++++ app/src/main/assets/SETUP-cs.md | 41 ++++++++++++ app/src/main/assets/SETUP-da.md | 41 ++++++++++++ app/src/main/assets/SETUP-de.md | 41 ++++++++++++ app/src/main/assets/SETUP-el.md | 41 ++++++++++++ app/src/main/assets/SETUP-es-ES.md | 41 ++++++++++++ app/src/main/assets/SETUP-fa.md | 41 ++++++++++++ app/src/main/assets/SETUP-fi.md | 41 ++++++++++++ app/src/main/assets/SETUP-fr.md | 41 ++++++++++++ app/src/main/assets/SETUP-gl.md | 41 ++++++++++++ app/src/main/assets/SETUP-he.md | 41 ++++++++++++ app/src/main/assets/SETUP-hr.md | 41 ++++++++++++ app/src/main/assets/SETUP-hu.md | 41 ++++++++++++ app/src/main/assets/SETUP-it.md | 41 ++++++++++++ app/src/main/assets/SETUP-ja.md | 41 ++++++++++++ app/src/main/assets/SETUP-ko.md | 41 ++++++++++++ app/src/main/assets/SETUP-lt.md | 41 ++++++++++++ app/src/main/assets/SETUP-nl.md | 41 ++++++++++++ app/src/main/assets/SETUP-nn-NO.md | 41 ++++++++++++ app/src/main/assets/SETUP-no.md | 41 ++++++++++++ app/src/main/assets/SETUP-pl.md | 41 ++++++++++++ app/src/main/assets/SETUP-pt-BR.md | 41 ++++++++++++ app/src/main/assets/SETUP-pt-PT.md | 41 ++++++++++++ app/src/main/assets/SETUP-ro.md | 41 ++++++++++++ app/src/main/assets/SETUP-ru.md | 41 ++++++++++++ app/src/main/assets/SETUP-sr.md | 41 ++++++++++++ app/src/main/assets/SETUP-sv-SE.md | 41 ++++++++++++ app/src/main/assets/SETUP-tr.md | 41 ++++++++++++ app/src/main/assets/SETUP-uk.md | 41 ++++++++++++ app/src/main/assets/SETUP-vi.md | 41 ++++++++++++ app/src/main/assets/SETUP-zh-CN.md | 41 ++++++++++++ app/src/main/assets/SETUP-zh-TW.md | 41 ++++++++++++ app/src/main/assets/SETUP.md | 66 +++++++++++++++++++ .../email/FragmentDialogMarkdown.java | 22 +++++++ app/src/main/res/values-nl-rNL/strings.xml | 2 +- app/src/main/res/values-ro-rRO/strings.xml | 3 + 47 files changed, 1748 insertions(+), 2 deletions(-) create mode 100644 app/src/main/assets/ATTRIBUTION.md create mode 100644 app/src/main/assets/PRIVACY.md create mode 100644 app/src/main/assets/SETUP-af.md create mode 100644 app/src/main/assets/SETUP-ar-BH.md create mode 100644 app/src/main/assets/SETUP-ar-EG.md create mode 100644 app/src/main/assets/SETUP-ar-SA.md create mode 100644 app/src/main/assets/SETUP-ar-YE.md create mode 100644 app/src/main/assets/SETUP-ar.md create mode 100644 app/src/main/assets/SETUP-az.md create mode 100644 app/src/main/assets/SETUP-ca.md create mode 100644 app/src/main/assets/SETUP-cs.md create mode 100644 app/src/main/assets/SETUP-da.md create mode 100644 app/src/main/assets/SETUP-de.md create mode 100644 app/src/main/assets/SETUP-el.md create mode 100644 app/src/main/assets/SETUP-es-ES.md create mode 100644 app/src/main/assets/SETUP-fa.md create mode 100644 app/src/main/assets/SETUP-fi.md create mode 100644 app/src/main/assets/SETUP-fr.md create mode 100644 app/src/main/assets/SETUP-gl.md create mode 100644 app/src/main/assets/SETUP-he.md create mode 100644 app/src/main/assets/SETUP-hr.md create mode 100644 app/src/main/assets/SETUP-hu.md create mode 100644 app/src/main/assets/SETUP-it.md create mode 100644 app/src/main/assets/SETUP-ja.md create mode 100644 app/src/main/assets/SETUP-ko.md create mode 100644 app/src/main/assets/SETUP-lt.md create mode 100644 app/src/main/assets/SETUP-nl.md create mode 100644 app/src/main/assets/SETUP-nn-NO.md create mode 100644 app/src/main/assets/SETUP-no.md create mode 100644 app/src/main/assets/SETUP-pl.md create mode 100644 app/src/main/assets/SETUP-pt-BR.md create mode 100644 app/src/main/assets/SETUP-pt-PT.md create mode 100644 app/src/main/assets/SETUP-ro.md create mode 100644 app/src/main/assets/SETUP-ru.md create mode 100644 app/src/main/assets/SETUP-sr.md create mode 100644 app/src/main/assets/SETUP-sv-SE.md create mode 100644 app/src/main/assets/SETUP-tr.md create mode 100644 app/src/main/assets/SETUP-uk.md create mode 100644 app/src/main/assets/SETUP-vi.md create mode 100644 app/src/main/assets/SETUP-zh-CN.md create mode 100644 app/src/main/assets/SETUP-zh-TW.md create mode 100644 app/src/main/assets/SETUP.md diff --git a/.gitignore b/.gitignore index ca03dae8d8..3b96410ab6 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,6 @@ /app/full /app/play_beta /app/play_release -/app/src/main/assets/*.md /tools/config.sh crowdin.properties keystore.properties diff --git a/app/build.gradle b/app/build.gradle index 1272537cac..dbc2dbe83f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -130,6 +130,25 @@ task copyMarkdown(type: Copy) { } preBuild.dependsOn copyMarkdown +task copySetup(type: Copy) { + from "src/main/res" + include '**/SETUP.md' + into "src/main/assets" + eachFile { file -> + file.relativePath = new RelativePath(true, "SETUP-${file.file.parentFile.name}.md") + } + includeEmptyDirs = false +} +preBuild.dependsOn copySetup + +task cleanCrowdin(type: Delete) { + delete fileTree("src/main/res").matching { + include "**/SETUP.md" + } +} +preBuild.dependsOn cleanCrowdin +cleanCrowdin.shouldRunAfter copySetup + repositories { google() jcenter() diff --git a/app/src/main/assets/ATTRIBUTION.md b/app/src/main/assets/ATTRIBUTION.md new file mode 100644 index 0000000000..0bc6b649ca --- /dev/null +++ b/app/src/main/assets/ATTRIBUTION.md @@ -0,0 +1,20 @@ +## Attribution + +FairEmail uses: + +* [JavaMail](https://projects.eclipse.org/projects/ee4j.javamail). Copyright (c) 1997-2018 Oracle® and/or its affiliates. All rights reserved. [GPLv2+CE license](https://javaee.github.io/javamail/JavaMail-License). +* [jsoup](https://jsoup.org/). Copyright © 2009 - 2017 Jonathan Hedley. [MIT license](https://jsoup.org/license). +* [Android Support Library](https://developer.android.com/tools/support-library/). Copyright (C) 2011 The Android Open Source Project. [Apache license 2.0](https://android.googlesource.com/platform/frameworks/support/+/master/LICENSE.txt). +* [Android Architecture Components](https://developer.android.com/topic/libraries/architecture/). Copyright 2018 The Android Open Source Project, Inc. [Apache license 2.0](https://github.com/googlesamples/android-architecture-components/blob/master/LICENSE). +* [colorpicker](https://android.googlesource.com/platform/frameworks/opt/colorpicker). Copyright (C) 2013 The Android Open Source Project. [Apache license 2.0](https://android.googlesource.com/platform/frameworks/opt/colorpicker/+/master/src/com/android/colorpicker/ColorPickerDialog.java). +* [dnsjava](http://www.xbill.org/dnsjava/). Copyright (c) 1998-2011, Brian Wellington. [BSD License](https://sourceforge.net/p/dnsjava/code/HEAD/tree/trunk/LICENSE). +* [OpenPGP API library](https://github.com/open-keychain/openpgp-api). Copyright (C) 2014-2015 Dominik Schürmann. [Apache License 2.0](https://github.com/open-keychain/openpgp-api/blob/master/LICENSE). +* [Android SQLite support library](https://github.com/requery/sqlite-android). Copyright (C) 2017 requery.io. [Apache License 2.0](https://github.com/requery/sqlite-android/blob/master/LICENSE). +* [App shortcut icon generator](https://romannurik.github.io/AndroidAssetStudio/icons-app-shortcut.html). Copyright ???. [Apache License 2.0](https://github.com/romannurik/AndroidAssetStudio/blob/master/LICENSE). +* [Mozilla ISPDB](https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration#ISPDB). *Free to use for any client.* +* [ShortcutBadger](https://github.com/leolin310148/ShortcutBadger). Copyright 2014 Leo Lin. [Apache license 2.0](https://github.com/leolin310148/ShortcutBadger/blob/master/LICENSE). +* [Bugsnag exception reporter for Android](https://github.com/bugsnag/bugsnag-android). Copyright (c) 2012 Bugsnag. [MIT License](https://github.com/bugsnag/bugsnag-android/blob/master/LICENSE.txt). +* [biweekly](https://github.com/mangstadt/biweekly). Copyright (c) 2013-2018, Michael Angstadt. [BSD 2-Clause](https://github.com/mangstadt/biweekly/blob/master/LICENSE). +* [PhotoView](https://github.com/chrisbanes/PhotoView). Copyright 2018 Chris Banes. [Apache License 2.0](https://github.com/chrisbanes/PhotoView/blob/master/LICENSE). +* [ReLinker](https://github.com/KeepSafe/ReLinker). Copyright 2015 - 2016 KeepSafe Software, Inc. [Apache License 2.0](https://github.com/KeepSafe/ReLinker/blob/master/LICENSE). +* [Markwon](https://github.com/noties/Markwon). Copyright 2019 Dimitry Ivanov. [Apache License 2.0](https://github.com/noties/Markwon/blob/master/LICENSE). diff --git a/app/src/main/assets/PRIVACY.md b/app/src/main/assets/PRIVACY.md new file mode 100644 index 0000000000..b78b739a34 --- /dev/null +++ b/app/src/main/assets/PRIVACY.md @@ -0,0 +1,18 @@ +## Privacy policy + +FairEmail **does not** collect any information. + +FairEmail **does not** store data on third party servers. + +FairEmail **does not** require unnecessary permissions. +For more information on permissions, see [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq1). + +FairEmail **does not** allow other apps access to messages and attachments without your approval. + +FairEmail **does** follow the recommendations of [this EFF article](https://www.eff.org/deeplinks/2019/01/stop-tracking-my-emails). + +FairEmail is 100 % **open source**, see [the license](https://github.com/M66B/FairEmail/blob/master/LICENSE). + +Error reporting is **opt-in**, see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq104) for more information. + +Copyright © 2018-2019 Marcel Bokhorst. diff --git a/app/src/main/assets/SETUP-af.md b/app/src/main/assets/SETUP-af.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-af.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ar-BH.md b/app/src/main/assets/SETUP-ar-BH.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ar-BH.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ar-EG.md b/app/src/main/assets/SETUP-ar-EG.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ar-EG.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ar-SA.md b/app/src/main/assets/SETUP-ar-SA.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ar-SA.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ar-YE.md b/app/src/main/assets/SETUP-ar-YE.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ar-YE.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ar.md b/app/src/main/assets/SETUP-ar.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ar.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-az.md b/app/src/main/assets/SETUP-az.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-az.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ca.md b/app/src/main/assets/SETUP-ca.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ca.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-cs.md b/app/src/main/assets/SETUP-cs.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-cs.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-da.md b/app/src/main/assets/SETUP-da.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-da.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-de.md b/app/src/main/assets/SETUP-de.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-de.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-el.md b/app/src/main/assets/SETUP-el.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-el.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-es-ES.md b/app/src/main/assets/SETUP-es-ES.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-es-ES.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-fa.md b/app/src/main/assets/SETUP-fa.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-fa.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-fi.md b/app/src/main/assets/SETUP-fi.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-fi.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-fr.md b/app/src/main/assets/SETUP-fr.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-fr.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-gl.md b/app/src/main/assets/SETUP-gl.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-gl.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-he.md b/app/src/main/assets/SETUP-he.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-he.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-hr.md b/app/src/main/assets/SETUP-hr.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-hr.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-hu.md b/app/src/main/assets/SETUP-hu.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-hu.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-it.md b/app/src/main/assets/SETUP-it.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-it.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ja.md b/app/src/main/assets/SETUP-ja.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ja.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ko.md b/app/src/main/assets/SETUP-ko.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ko.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-lt.md b/app/src/main/assets/SETUP-lt.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-lt.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-nl.md b/app/src/main/assets/SETUP-nl.md new file mode 100644 index 0000000000..3903eff01b --- /dev/null +++ b/app/src/main/assets/SETUP-nl.md @@ -0,0 +1,41 @@ +# Instel help + +Het instellen van FairEmail is vrij eenvoudig. U moet ten minste één account toevoegen om e-mail te ontvangen en ten minste één identiteit om e-mail te verzenden. Snel instellen zal in één keer een account en een identiteit toevoegen voor de meeste grote providers. + +## Vereisten + +Een internetverbinding is vereist om accounts en identiteiten in te stellen. + +## Snel instellen + +Voer gewoon je naam, e-mailadres en wachtwoord in en tik op *Ga*. + +Dit zal werken voor de meeste grote e-mailproviders. + +Als het snelle instellen niet werkt, moet je een account en een identiteit op een andere manier instellen, zie hieronder voor instructies. + +## Account instellen - om e-mail te ontvangen + +Om een account toe te voegen, tik op *Beheer accounts* en tik op de oranje *voeg toe* knop onderaan. Selecteer een provider uit de lijst, voer de gebruikersnaam in, die meestal uw e-mailadres is en voer uw wachtwoord in. Tik *Controleer* om FairEmail te laten verbinden met de e-mailserver en een lijst van systeemmappen op te laten halen. Na het controleren van de selectie van systeemmappen kunt u het account toevoegen door op *Bewaren* te klikken. + +Als uw provider niet in de lijst van providers staat, selecteer *Aangepast*. Voer de domeinnaam in, bijvoorbeeld *gmail.com* en tik op *Instellingen ophalen*. Als uw provider [auto-discovery](https://tools.ietf.org/html/rfc6186) ondersteunt, zal FairEmail de hostnaam en poortnummer invullen, controleer anders de instelinstructies van uw provider voor de juiste IMAP host naam, poortnummer en protocol (SSL/TLS of STARTTLS). Voor meer informatie, zie [hier](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Identiteit instellen - om e-mail te verzenden + +Om een identiteit toe te voegen, tik op *Beheer identiteit* en tik op de oranje *voeg toe* knop onderaan. Voer de naam in die u wilt laten verschijnen in het 'van' adres van de e-mails die u verzendt en selecteer een gekoppeld account. Tik op *Opslaan* om de identiteit toe te voegen. + +Als het account handmatig werd geconfigureerd, moet u waarschijnlijk ook de identiteit handmatig configureren. Voer de domeinnaam in, bijvoorbeeld *gmail.com* en tik op *Instellingen ophalen*. Als uw provider [auto-discovery](https://tools.ietf.org/html/rfc6186) ondersteunt, zal FairEmail de hostnaam en poortnummer invullen, controleer anders de instelinstructies van uw provider voor de juiste SMTP host naam, poortnummer en protocol (SSL/TLS of STARTTLS). + +Zie [deze FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) over het gebruik van aliassen. + +## Toestemmingen verlenen - om contact informatie op te vragen + +Als u e-mailadressen wilt opzoeken, contactfoto's wilt zien, enz. moet u aan FairEmail toestemmingen verlenen om contacten te lezen. Tik op *Toestemmingen verlenen* en selecteer *Toestaan*. + +## Accuoptimalisaties instellen - om voortdurend e-mail te ontvangen + +Recente Android versies zetten apps in de slaapstand wanneer het scherm enige tijd uit is om het accugebruik te verminderen. Als u nieuwe e-mails zonder vertraging wilt ontvangen, dan moet u de accuoptimalisaties voor FairEmail uitschakelen. Tik *Schakel accuoptimalisaties uit* en volg de instructies. + +## Vragen of problemen + +Als u een vraag of probleem heeft, kijk [hier](https://github.com/M66B/FairEmail/blob/master/FAQ.md) of gebruik [dit contactformulier](https://contact.faircode.eu/?product=fairemailsupport) om hulp te vragen (u kunt het transactienummer "*setup help*" gebruiken). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-nn-NO.md b/app/src/main/assets/SETUP-nn-NO.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-nn-NO.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-no.md b/app/src/main/assets/SETUP-no.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-no.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-pl.md b/app/src/main/assets/SETUP-pl.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-pl.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-pt-BR.md b/app/src/main/assets/SETUP-pt-BR.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-pt-BR.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-pt-PT.md b/app/src/main/assets/SETUP-pt-PT.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-pt-PT.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ro.md b/app/src/main/assets/SETUP-ro.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ro.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-ru.md b/app/src/main/assets/SETUP-ru.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-ru.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-sr.md b/app/src/main/assets/SETUP-sr.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-sr.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-sv-SE.md b/app/src/main/assets/SETUP-sv-SE.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-sv-SE.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-tr.md b/app/src/main/assets/SETUP-tr.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-tr.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-uk.md b/app/src/main/assets/SETUP-uk.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-uk.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-vi.md b/app/src/main/assets/SETUP-vi.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-vi.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-zh-CN.md b/app/src/main/assets/SETUP-zh-CN.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-zh-CN.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP-zh-TW.md b/app/src/main/assets/SETUP-zh-TW.md new file mode 100644 index 0000000000..4fa950e92d --- /dev/null +++ b/app/src/main/assets/SETUP-zh-TW.md @@ -0,0 +1,41 @@ +# Setup help + +Setting up FairEmail is fairly simple. You'll need to add at least one account to receive email and at least one identity if you want to send email. The quick setup will add an account and an identity in one go for most major providers. + +## Requirements + +An internet connection is required to setup accounts and identities. + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. Select a provider from the list, enter the username, which is mostly your email address and enter your password. Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. Enter the name you want to appear in de from address of the emails you send and select a linked account. Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. Enter the domain name, for example *gmail.com* and tap *Get settings*. If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. Just tap *Grant permissions* and select *Allow*. + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. Tap *Disable battery optimizations* and follow the instructions. + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). \ No newline at end of file diff --git a/app/src/main/assets/SETUP.md b/app/src/main/assets/SETUP.md new file mode 100644 index 0000000000..b5080e9078 --- /dev/null +++ b/app/src/main/assets/SETUP.md @@ -0,0 +1,66 @@ +# Setup help + +Setting up FairEmail is fairly simple. +You'll need to add at least one account to receive email and at least one identity if you want to send email. +The quick setup will add an account and an identity in one go for most major providers. + + +## Requirements + +An internet connection is required to setup accounts and identities. + + +## Quick setup + +Just enter your name, email address and password and tap *Go*. + +This will work for most major email providers. + +If the quick setup doesn't work, you'll need to setup an account and an identity in another way, see below for instructions. + + +## Setup account - to receive email + +To add an account, tap on *Manage accounts* and tap on the orange *add* button at the bottom. +Select a provider from the list, enter the username, which is mostly your email address and enter your password. +Tap *Check* to let FairEmail connect to the email server and fetch a list of system folders. +After reviewing the system folder selection you can add the account by tapping *Save*. + +If your provider is not in the list of providers, select *Custom*. +Enter the domain name, for example *gmail.com* and tap *Get settings*. +If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, +else check the setup instructions of your provider for the right IMAP host name, port number and protocol (SSL/TLS or STARTTLS). +For more about this, please see [here](https://github.com/M66B/FairEmail/blob/master/FAQ.md#authorizing-accounts). + + +## Setup identity - to send email + +Similarly, to add an identity, tap on *Manage identity* and tap on the orange *add* button at the bottom. +Enter the name you want to appear in de from address of the emails you send and select a linked account. +Tap *Save* to add the identity. + +If the account was configured manually, you likely need to configure the identity manually too. +Enter the domain name, for example *gmail.com* and tap *Get settings*. +If your provider supports [auto-discovery](https://tools.ietf.org/html/rfc6186), FairEmail will fill in the host name and port number, +else check the setup instructions of your provider for the right SMTP host name, port number and protocol (SSL/TLS or STARTTLS). + +See [this FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#FAQ9) about using aliases. + + +## Grant permissions - to access contact information + +If you want to lookup email addresses, have contact photos shown, etc, you'll need to grant read contacts permission to FairEmail. +Just tap *Grant permissions* and select *Allow*. + + +## Setup battery optimizations - to continuously receive email + +On recent Android versions, Android will put apps to sleep when the screen is off for some time to reduce battery usage. +If you want to receive new emails without delays, you should disable battery optimizations for FairEmail. +Tap *Disable battery optimizations* and follow the instructions. + + +## Questions or problems + +If you have a question or problem, please [see here](https://github.com/M66B/FairEmail/blob/master/FAQ.md) +or use [this contact form](https://contact.faircode.eu/?product=fairemailsupport) to ask for help (you can use the transaction number "*setup help*"). diff --git a/app/src/main/java/eu/faircode/email/FragmentDialogMarkdown.java b/app/src/main/java/eu/faircode/email/FragmentDialogMarkdown.java index 3b39f2398a..c970562f64 100644 --- a/app/src/main/java/eu/faircode/email/FragmentDialogMarkdown.java +++ b/app/src/main/java/eu/faircode/email/FragmentDialogMarkdown.java @@ -14,6 +14,9 @@ import androidx.annotation.NonNull; import androidx.annotation.Nullable; import java.io.InputStream; +import java.util.Arrays; +import java.util.List; +import java.util.Locale; import io.noties.markwon.Markwon; @@ -50,6 +53,25 @@ public class FragmentDialogMarkdown extends FragmentDialogEx { @Override protected Spanned onExecute(Context context, Bundle args) throws Throwable { String name = args.getString("name"); + String[] c = name.split("\\."); + + List assets = Arrays.asList(getResources().getAssets().list("")); + + String country = Locale.getDefault().getCountry(); + String language = Locale.getDefault().getLanguage(); + + String localized = c[0] + "-" + language + "-" + country + "." + c[1]; + Log.i("Checking " + localized); + if (assets.contains(localized)) + name = localized; + else { + localized = c[0] + "-" + language + "." + c[1]; + Log.i("Checking " + localized); + if (assets.contains(localized)) + name = localized; + } + Log.i("Using " + name); + try (InputStream is = context.getAssets().open(name)) { byte[] buffer = new byte[is.available()]; is.read(buffer); diff --git a/app/src/main/res/values-nl-rNL/strings.xml b/app/src/main/res/values-nl-rNL/strings.xml index 2ece28883f..e72ed7e553 100644 --- a/app/src/main/res/values-nl-rNL/strings.xml +++ b/app/src/main/res/values-nl-rNL/strings.xml @@ -2,7 +2,7 @@ FairEmail zoeken - Wijzigingen + Wijzigingsgeschiedenis FairEmail is een open source e-mail app gericht op privacy en veiligheid. Om deze reden werken sommige functies mogelijk anders dan u gewend bent. Berichten worden bijvoorbeeld altijd opnieuw geformatteerd om onveilige elementen te verwijderen en de leesbaarheid te verbeteren en het openen van koppelingen moet voor de veiligheid worden bevestigd. FairEmail wordt niet ondersteund op dit apparaat omdat bugs in Android crashes veroorzaken diff --git a/app/src/main/res/values-ro-rRO/strings.xml b/app/src/main/res/values-ro-rRO/strings.xml index fd282bc89c..869d4983df 100644 --- a/app/src/main/res/values-ro-rRO/strings.xml +++ b/app/src/main/res/values-ro-rRO/strings.xml @@ -547,11 +547,13 @@ Destinatarul conține Subiectul conține Antetul conține + Interval de timp Expresie regulată (regex) ȘI Acțiune Această acțiune se va aplica mesajelor noi care sosesc în dosarul %1$s Ore + Condiția până la terminarea timpului Dosar Toate mesajele în aceeași conversație și dosar Identitate @@ -677,6 +679,7 @@ Raportează Remediere Activează + Oricare Se execută Finalizat Întreabă ce să faci