mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
36 lines
983 B
Bash
36 lines
983 B
Bash
#! /bin/bash
|
|
|
|
# shellcheck source-path=target/scripts/helpers
|
|
# This file serves as a single import for all helpers
|
|
|
|
# Global checksum file mainly needed for the changedetector.
|
|
# Used in the folling scripts:
|
|
#
|
|
# - ../check-for-changes.sh
|
|
# - ../start-mailserver.sh
|
|
# - ../startup/setup-stack.sh
|
|
# - ../../../test/test_helper/common.bash
|
|
#
|
|
# shellcheck disable=SC2034
|
|
CHKSUM_FILE=/tmp/docker-mailserver-config-chksum
|
|
|
|
function _import_scripts
|
|
{
|
|
local PATH_TO_SCRIPTS='/usr/local/bin/helpers'
|
|
|
|
source "${PATH_TO_SCRIPTS}/accounts.sh"
|
|
source "${PATH_TO_SCRIPTS}/aliases.sh"
|
|
source "${PATH_TO_SCRIPTS}/dns.sh"
|
|
source "${PATH_TO_SCRIPTS}/error.sh"
|
|
source "${PATH_TO_SCRIPTS}/lock.sh"
|
|
source "${PATH_TO_SCRIPTS}/log.sh"
|
|
source "${PATH_TO_SCRIPTS}/network.sh"
|
|
source "${PATH_TO_SCRIPTS}/postfix.sh"
|
|
source "${PATH_TO_SCRIPTS}/relay.sh"
|
|
source "${PATH_TO_SCRIPTS}/sasl.sh"
|
|
source "${PATH_TO_SCRIPTS}/ssl.sh"
|
|
source "${PATH_TO_SCRIPTS}/utils.sh"
|
|
}
|
|
|
|
_import_scripts
|