Add documentation to validate phone numbers

This commit is contained in:
Maxime Dor
2017-09-25 17:03:50 +02:00
parent c73bbf675e
commit 1e77bf43c6
4 changed files with 42 additions and 28 deletions

View File

@@ -0,0 +1,19 @@
# Email notifications - SMTP connector
Connector ID: `smtp`
Example configuration:
```
threepid:
medium:
email:
identity:
from: 'identityServerEmail@example.org'
name: 'My Identity Server'
connectors:
smtp:
host: 'smtpHostname'
port: 587
tls: 1 # 0 = no STARTLS, 1 = try, 2 = force
login: 'smtpLogin'
password: 'smtpPassword'
```