mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-05-22 23:50:12 +02:00
Now, setups that use `SSL_TYPE=manual` will profit from the changedetector as well. Certificate changes are picked up and properly propagated.
17 lines
419 B
Bash
Executable File
17 lines
419 B
Bash
Executable File
#! /bin/bash
|
|
# shellcheck source-path=target/scripts/helpers
|
|
# This file serves as a single import for all helpers
|
|
|
|
function _import_scripts
|
|
{
|
|
local PATH_TO_SCRIPTS='/usr/local/bin/helpers'
|
|
|
|
. "${PATH_TO_SCRIPTS}/postfix.sh"
|
|
. "${PATH_TO_SCRIPTS}/accounts.sh"
|
|
. "${PATH_TO_SCRIPTS}/aliases.sh"
|
|
. "${PATH_TO_SCRIPTS}/relay.sh"
|
|
. "${PATH_TO_SCRIPTS}/sasl.sh"
|
|
. "${PATH_TO_SCRIPTS}/ssl.sh"
|
|
}
|
|
_import_scripts
|