We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19bcfb2 commit 288597cCopy full SHA for 288597c
1 file changed
flake.nix
@@ -27,8 +27,12 @@
27
enableSubmission = true;
28
enableSubmissions = true;
29
tlsTrustedAuthorities = "${certs.ca.cert}";
30
- sslCert = "${certs."acme.test".cert}";
31
- sslKey = "${certs."acme.test".key}";
+ config = {
+ smtpd_tls_chain_files = [
32
+ certs."acme.test".key
33
+ certs."acme.test".cert
34
+ ];
35
+ };
36
submissionOptions = {
37
smtpd_sasl_auth_enable = "yes";
38
smtpd_client_restrictions = "permit";
0 commit comments