You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

email-setup.en-us.md 796 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. date: "2019-10-15T10:10:00+05:00"
  3. title: "Usage: Email setup"
  4. slug: "email-setup"
  5. weight: 12
  6. toc: true
  7. draft: false
  8. menu:
  9. sidebar:
  10. parent: "usage"
  11. name: "Email setup"
  12. weight: 12
  13. identifier: "email-setup"
  14. ---
  15. # Email setup
  16. - To use Gitea's built-in Email support, update the `app.ini` config file [mailer] section:
  17. ```ini
  18. [mailer]
  19. ENABLED = true
  20. HOST = mail.mydomain.com:587
  21. FROM = gitea@mydomain.com
  22. USER = gitea@mydomain.com
  23. PASSWD = `password`
  24. ```
  25. - Restart Gitea for the configuration changes to take effect.
  26. - To send a test email to validate the settings, go to Gitea > Site Administration > Configuration > SMTP Mailer Configuration.
  27. For the full list of options check the [Config Cheat Sheet]({{< relref "doc/advanced/config-cheat-sheet.en-us.md" >}})