diff options
author | John Olheiser <42128690+jolheiser@users.noreply.github.com> | 2019-11-08 13:44:18 -0600 |
---|---|---|
committer | techknowlogick <techknowlogick@gitea.io> | 2019-11-08 14:44:18 -0500 |
commit | fb459f2c2c32dda29870731b6dae1452bbab625f (patch) | |
tree | 501ae598a4d7fcc178931571ccb5a1d0b90561b8 /docs/content/doc/usage/email-setup.en-us.md | |
parent | 1274ad864e59b857344f3e11cc867d3146ddd64b (diff) | |
download | gitea-fb459f2c2c32dda29870731b6dae1452bbab625f.tar.gz gitea-fb459f2c2c32dda29870731b6dae1452bbab625f.zip |
Add password reset to FAQ (#8883)
* Add password reset to FAQ
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Add links to email setup docs
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Add en-us to email setup
Signed-off-by: jolheiser <john.olheiser@gmail.com>
* Update docs/content/doc/help/faq.en-us.md
Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
* Manually merge changes from @guillep2k and add small changes
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Diffstat (limited to 'docs/content/doc/usage/email-setup.en-us.md')
-rw-r--r-- | docs/content/doc/usage/email-setup.en-us.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/content/doc/usage/email-setup.en-us.md b/docs/content/doc/usage/email-setup.en-us.md new file mode 100644 index 0000000000..6fc9de81dd --- /dev/null +++ b/docs/content/doc/usage/email-setup.en-us.md @@ -0,0 +1,33 @@ +--- +date: "2019-10-15T10:10:00+05:00" +title: "Usage: Email setup" +slug: "email-setup" +weight: 12 +toc: true +draft: false +menu: + sidebar: + parent: "usage" + name: "Email setup" + weight: 12 + identifier: "email-setup" +--- + +# Email setup + +- To use Gitea's built-in Email support, update the `app.ini` config file [mailer] section: + +```ini +[mailer] +ENABLED = true +HOST = mail.mydomain.com:587 +FROM = gitea@mydomain.com +USER = gitea@mydomain.com +PASSWD = `password` +``` + +- Restart Gitea for the configuration changes to take effect. + +- To send a test email to validate the settings, go to Gitea > Site Administration > Configuration > SMTP Mailer Configuration. + +For the full list of options check the [Config Cheat Sheet]({{< relref "doc/advanced/config-cheat-sheet.en-us.md" >}})
\ No newline at end of file |