File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
nixos/modules/services/security Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 8282 '' ;
8383 } ;
8484
85+ notifierSmtpTlsCertificateChainFile = mkOption {
86+ type = types . nullOr types . path ;
87+ default = null ;
88+ description = ''
89+ Path to your certificate chain file used for TLS connection verification with the SMTP server.
90+ '' ;
91+ } ;
92+
8593 oidcIssuerPrivateKeyFile = mkOption {
8694 type = types . nullOr types . path ;
8795 default = null ;
381389 AUTHELIA_SESSION_SECRET_FILE = instance . secrets . sessionSecretFile ;
382390 AUTHELIA_IDENTITY_PROVIDERS_OIDC_HMAC_SECRET_FILE = instance . secrets . oidcHmacSecretFile ;
383391 AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE = instance . secrets . notifierSmtpPasswordFile ;
392+ AUTHELIA_NOTIFIER_SMTP_TLS_CERTIFICATE_CHAIN_FILE =
393+ instance . secrets . notifierSmtpTlsCertificateChainFile ;
384394 } )
385395 // instance . environmentVariables ;
386396
You can’t perform that action at this time.
0 commit comments