services: matrix: move smtp port note out of secret

This commit is contained in:
Antoine Martin 2021-06-09 14:57:51 +02:00
parent 1b6258e363
commit 6c17c2d82c
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View file

@ -39,6 +39,12 @@ in {
smtpPort = mkOption { smtpPort = mkOption {
type = types.port; type = types.port;
default = 587; default = 587;
description = ''
The port to use to connect to the SMTP host.
Defaulting to STARTTLS port 587 because TLS port 465 isn't supported by synapse
See https://github.com/matrix-org/synapse/issues/8046
'';
}; };
smtpUser = mkOption { smtpUser = mkOption {
type = types.str; type = types.str;