You've already forked docker-mailserver
mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-06-18 03:57:47 +02:00
8 lines
221 B
Bash
8 lines
221 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
|
||
|
function _setup_mta_sts() {
|
||
|
_log 'trace' 'Adding MTA-STS lookup to the Postfix TLS policy map'
|
||
|
_add_to_or_update_postfix_main smtp_tls_policy_maps 'socketmap:unix:/var/run/mta-sts/daemon.sock:postfix'
|
||
|
}
|