feat: adapt smtprelay role for external use

This commit is contained in:
VC
2024-07-05 11:53:34 +02:00
parent da2b1c1156
commit 3faef4717a
6 changed files with 37 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
myorigin = mateu.be
myorigin = {{ smtprelay_origin }}
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
@@ -17,7 +17,7 @@ smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_use_tls = yes
relayhost = [smtp.libertus.eu]:587
relayhost = [{{ smtprelay_host }}]:{{ smtprelay_port }}
## only accepts local relay
mynetworks = 127.0.0.0/8, 172.17.0.1/16

View File

@@ -1 +1 @@
[smtp.libertus.eu]:587 smtp.relay:{{ smtp_relay_pass }}
[{{ smtprelay_host }}]:{{ smtprelay_port }} {{ smtprelay_login }}:{{ smtprelay_pass }}

View File

@@ -0,0 +1,4 @@
[smtp-tls-wrapper]
accept = 2{{ smtprelay_port }}
client = yes
connect = {{ smtprelay_host }}:{{ smtprelay_port }}