diff options
| author | AKP <abi@tdpain.net> | 2025-02-09 01:28:04 +0000 |
|---|---|---|
| committer | AKP <abi@tdpain.net> | 2025-02-09 01:29:09 +0000 |
| commit | 1ac249268241a2eabf932e0072a62439552dd601 (patch) | |
| tree | bf8761bb35fed56cd31e1b998830602a44536778 /README.md | |
| parent | 948108217c2de8c233147dab8023f1548e8c2651 (diff) | |
Fixup email settings
Adds support for switching between STARTTLS, TLS and no TLS. Adds support for not specifying a username and password.
Fixes #5
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -56,13 +56,14 @@ server: # This is a required field externalURL: "http://127.0.0.1:8080" email: - # Defaults are not provided for any email option - # All of the below are required fields - password: "yourapikey" - username: "apikey" + # These are required fields host: "smtp.sendgrid.net" port: 587 from: "Walrss <walrss@yourdomain.com>" + # These fields are not required + tls: "" # valid values are: starttls, tls, no - default: starttls + password: "yourapikey" + username: "apikey" platform: disableRegistration: false disableSecureCookies: false |
