2019-10-16 13:34:20 +02:00
|
|
|
|
---
|
|
|
|
|
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
|
|
|
|
|
|
2020-03-13 16:20:14 +01:00
|
|
|
|
To use Gitea's built-in Email support, update the `app.ini` config file [mailer] section:
|
2019-10-16 13:34:20 +02:00
|
|
|
|
|
2020-03-13 16:20:14 +01:00
|
|
|
|
## Sendmail version
|
|
|
|
|
Use the operating system’s sendmail command instead of SMTP. This is common on Linux servers.
|
|
|
|
|
Note: For use in the official Gitea Docker image, please configure with the SMTP version.
|
2019-10-16 13:34:20 +02:00
|
|
|
|
```ini
|
|
|
|
|
[mailer]
|
2020-03-13 16:20:14 +01:00
|
|
|
|
ENABLED = true
|
|
|
|
|
FROM = gitea@mydomain.com
|
|
|
|
|
MAILER_TYPE = sendmail
|
|
|
|
|
SENDMAIL_PATH = /usr/sbin/sendmail
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## SMTP version
|
|
|
|
|
```ini
|
|
|
|
|
[mailer]
|
|
|
|
|
ENABLED = true
|
|
|
|
|
FROM = gitea@mydomain.com
|
|
|
|
|
MAILER_TYPE = smtp
|
|
|
|
|
HOST = mail.mydomain.com:587
|
|
|
|
|
IS_TLS_ENABLED = true
|
|
|
|
|
USER = gitea@mydomain.com
|
|
|
|
|
PASSWD = `password`
|
2019-10-16 13:34:20 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- 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.
|
|
|
|
|
|
2020-03-13 16:20:14 +01:00
|
|
|
|
For the full list of options check the [Config Cheat Sheet]({{< relref "doc/advanced/config-cheat-sheet.en-us.md" >}})
|