From db03fc2efaa418b28267fe532a0cc9c09d2e09ab Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 18 Feb 2022 05:25:59 +0000 Subject: [PATCH] fix(build): corrected syntax error in dockerfile MR !8 --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 6ee6844..7a79d89 100644 --- a/dockerfile +++ b/dockerfile @@ -181,7 +181,7 @@ RUN postconf -e "maillog_file=/var/log/postfix.log" \ # Only add missing headers for authenticated users (mail users) and my networks and mail orginating from localhost && postconf -e "local_header_rewrite_clients=permit_sasl_authenticated,permit_mynetworks,permit_inet_interfaces" \ # set tls settings - && postfonf -e "tls_preempt_cipherlist = yes" \ + && postconf -e "tls_preempt_cipherlist = yes" \ && postconf -e "tls_ssl_options = NO_COMPRESSION, NO_RENEGOTIATION" \ && postconf -e "smtpd_tls_cert_file=/certs/postfix/cert.pem" \ && postconf -e "smtpd_tls_key_file=/certs/postfix/key.pem" \