mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
16 lines
387 B
Bash
16 lines
387 B
Bash
|
#! /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"
|
||
|
}
|
||
|
_import_scripts
|