Email config docs

This commit is contained in:
David Stephens 2018-02-04 23:05:44 +00:00
parent 1f29905f30
commit e64ee13382
2 changed files with 31 additions and 1 deletions

View File

@ -20,8 +20,8 @@
- [Directory Structure]({{ site.baseurl }}{% link configuration/directory-structure.md %})
- [Archivers]({{ site.baseurl }}{% link configuration/archivers.md %})
- [File Transfer Protocols]({{ site.baseurl }}{% link configuration/file-transfer-protocols.md %})
- [Email]({{ site.baseurl }}{% link configuration/email.md %})
- Scheduled jobs
- SMTP
- File Base
- [About]({{ site.baseurl }}{% link filebase/index.md %})

View File

@ -0,0 +1,30 @@
---
layout: page
title: Email
---
ENiGMA½ uses email to send password reset information to users. For it to work, you need to provide valid SMTP
config in your [config.hjson]({{ site.baseurl }}{% link configuration/config-hjson.md %})
## SMTP Services
If you don't have an SMTP server to send from, [Sendgrid](https://sendgrid.com/) provide a reliable free
service.
## Example SMTP Configuration
```hjson
email: {
defaultFrom: sysop@bbs.force9.org
transport: {
host: smtp.awesomeserver.com
port: 587
secure: false
auth: {
user: leisuresuitlarry
pass: sierra123
}
}
}
}
```