File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
nixos/modules/services/security Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 9090 '' ;
9191 } ;
9292
93+ notifierSmtpTlsPrivateKeyFile = mkOption {
94+ type = types . nullOr types . path ;
95+ default = null ;
96+ description = ''
97+ Path to your private key file used for TLS connection verification with the SMTP server.
98+ '' ;
99+ } ;
100+
93101 oidcIssuerPrivateKeyFile = mkOption {
94102 type = types . nullOr types . path ;
95103 default = null ;
391399 AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE = instance . secrets . notifierSmtpPasswordFile ;
392400 AUTHELIA_NOTIFIER_SMTP_TLS_CERTIFICATE_CHAIN_FILE =
393401 instance . secrets . notifierSmtpTlsCertificateChainFile ;
402+ AUTHELIA_NOTIFIER_SMTP_TLS_PRIVATE_KEY_FILE = instance . secrets . notifierSmtpTlsPrivateKeyFile ;
394403 } )
395404 // instance . environmentVariables ;
396405
You can’t perform that action at this time.
0 commit comments