2022-09-21 07:31:28 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
# -eE :: exit on error (do this in functions as well)
|
|
|
|
# -u :: show (and exit) when using unset variables
|
|
|
|
# -o pipefail :: exit on error in pipes
|
|
|
|
set -eE -u -o pipefail
|
|
|
|
|
|
|
|
# shellcheck source=../helpers/log.sh
|
|
|
|
source /usr/local/bin/helpers/log.sh
|
|
|
|
|
|
|
|
_log_level_is 'trace' && QUIET='-y' || QUIET='-qq'
|
|
|
|
|
|
|
|
function _pre_installation_steps
|
|
|
|
{
|
|
|
|
_log 'info' 'Starting package installation'
|
|
|
|
_log 'debug' 'Running pre-installation steps'
|
|
|
|
|
|
|
|
_log 'trace' 'Updating package signatures'
|
|
|
|
apt-get "${QUIET}" update
|
|
|
|
|
|
|
|
_log 'trace' 'Installing packages that are needed early'
|
|
|
|
apt-get "${QUIET}" install --no-install-recommends apt-utils 2>/dev/null
|
|
|
|
|
|
|
|
_log 'trace' 'Upgrading packages'
|
|
|
|
apt-get "${QUIET}" upgrade
|
|
|
|
}
|
|
|
|
|
|
|
|
function _install_postfix
|
|
|
|
{
|
|
|
|
_log 'debug' 'Installing Postfix'
|
|
|
|
|
|
|
|
_log 'warn' 'Applying workaround for Postfix bug (see https://github.com//issues/2023#issuecomment-855326403)'
|
|
|
|
|
|
|
|
# Debians postfix package has a post-install script that expects a valid FQDN hostname to work:
|
|
|
|
mv /bin/hostname /bin/hostname.bak
|
|
|
|
echo "echo 'docker-mailserver.invalid'" >/bin/hostname
|
|
|
|
chmod +x /bin/hostname
|
|
|
|
apt-get "${QUIET}" install --no-install-recommends postfix
|
|
|
|
mv /bin/hostname.bak /bin/hostname
|
|
|
|
}
|
|
|
|
|
|
|
|
function _install_packages
|
|
|
|
{
|
|
|
|
_log 'debug' 'Installing all packages now'
|
|
|
|
|
2022-09-29 21:26:45 +00:00
|
|
|
declare -a ANTI_VIRUS_SPAM_PACKAGES
|
2022-09-21 07:31:28 +00:00
|
|
|
declare -a CODECS_PACKAGES MISCELLANEOUS_PACKAGES
|
|
|
|
declare -a POSTFIX_PACKAGES MAIL_PROGRAMS_PACKAGES
|
|
|
|
|
|
|
|
ANTI_VIRUS_SPAM_PACKAGES=(
|
|
|
|
amavisd-new clamav clamav-daemon
|
2022-09-29 07:02:56 +00:00
|
|
|
pyzor razor spamassassin
|
2022-09-21 07:31:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
CODECS_PACKAGES=(
|
|
|
|
altermime arj bzip2
|
|
|
|
cabextract cpio file
|
|
|
|
gzip lhasa liblz4-tool
|
|
|
|
lrzip lzop nomarch
|
|
|
|
p7zip-full pax rpm2cpio
|
|
|
|
unrar-free unzip xz-utils
|
|
|
|
)
|
|
|
|
|
|
|
|
MISCELLANEOUS_PACKAGES=(
|
|
|
|
apt-transport-https binutils bsd-mailx
|
|
|
|
ca-certificates curl dbconfig-no-thanks
|
|
|
|
dumb-init ed gamin gnupg iproute2
|
|
|
|
libdate-manip-perl libldap-common
|
|
|
|
libmail-spf-perl libnet-dns-perl
|
|
|
|
locales logwatch netcat-openbsd
|
|
|
|
nftables rsyslog supervisor
|
|
|
|
uuid whois
|
|
|
|
)
|
|
|
|
|
|
|
|
POSTFIX_PACKAGES=(
|
|
|
|
pflogsumm postgrey postfix-ldap
|
|
|
|
postfix-pcre postfix-policyd-spf-python postsrsd
|
|
|
|
)
|
|
|
|
|
|
|
|
MAIL_PROGRAMS_PACKAGES=(
|
|
|
|
fetchmail opendkim opendkim-tools
|
|
|
|
opendmarc libsasl2-modules sasl2-bin
|
|
|
|
)
|
|
|
|
|
|
|
|
apt-get "${QUIET}" --no-install-recommends install \
|
|
|
|
"${ANTI_VIRUS_SPAM_PACKAGES[@]}" \
|
|
|
|
"${CODECS_PACKAGES[@]}" \
|
|
|
|
"${MISCELLANEOUS_PACKAGES[@]}" \
|
|
|
|
"${POSTFIX_PACKAGES[@]}" \
|
|
|
|
"${MAIL_PROGRAMS_PACKAGES[@]}"
|
|
|
|
}
|
|
|
|
|
2022-09-29 21:26:45 +00:00
|
|
|
function _install_dovecot
|
|
|
|
{
|
|
|
|
declare -a DOVECOT_PACKAGES
|
|
|
|
|
|
|
|
DOVECOT_PACKAGES=(
|
|
|
|
dovecot-core dovecot-fts-xapian dovecot-imapd
|
|
|
|
dovecot-ldap dovecot-lmtpd dovecot-managesieved
|
|
|
|
dovecot-pop3d dovecot-sieve dovecot-solr
|
|
|
|
)
|
|
|
|
|
|
|
|
if [[ ${DOVECOT_COMMUNITY_REPO} -eq 1 ]]
|
|
|
|
then
|
|
|
|
_log 'trace' 'Using Dovecot community repository'
|
|
|
|
curl https://repo.dovecot.org/DOVECOT-REPO-GPG | gpg --import
|
|
|
|
gpg --export ED409DA1 > /etc/apt/trusted.gpg.d/dovecot.gpg
|
|
|
|
echo "deb https://repo.dovecot.org/ce-2.3-latest/debian/bullseye bullseye main" > /etc/apt/sources.list.d/dovecot.list
|
|
|
|
|
|
|
|
_log 'trace' 'Updating Dovecot package signatures'
|
|
|
|
apt-get "${QUIET}" update
|
|
|
|
fi
|
|
|
|
|
|
|
|
_log 'debug' 'Installing Dovecot'
|
|
|
|
apt-get "${QUIET}" --no-install-recommends install "${DOVECOT_PACKAGES[@]}"
|
|
|
|
}
|
|
|
|
|
2022-09-29 07:02:56 +00:00
|
|
|
function _install_fail2ban
|
|
|
|
{
|
|
|
|
local FAIL2BAN_DEB_URL='https://github.com/fail2ban/fail2ban/releases/download/0.11.2/fail2ban_0.11.2-1.upstream1_all.deb'
|
|
|
|
local FAIL2BAN_DEB_ASC_URL="${FAIL2BAN_DEB_URL}.asc"
|
|
|
|
local FAIL2BAN_GPG_FINGERPRINT='8738 559E 26F6 71DF 9E2C 6D9E 683B F1BE BD0A 882C'
|
|
|
|
local FAIL2BAN_GPG_PUBLIC_KEY_ID='0x683BF1BEBD0A882C'
|
|
|
|
local FAIL2BAN_GPG_PUBLIC_KEY_SERVER='hkps://keyserver.ubuntu.com'
|
|
|
|
|
|
|
|
_log 'debug' 'Installing Fail2ban'
|
|
|
|
|
|
|
|
gpg --keyserver "${FAIL2BAN_GPG_PUBLIC_KEY_SERVER}" --recv-keys "${FAIL2BAN_GPG_PUBLIC_KEY_ID}" 2>&1
|
|
|
|
|
|
|
|
curl -Lkso fail2ban.deb "${FAIL2BAN_DEB_URL}"
|
|
|
|
curl -Lkso fail2ban.deb.asc "${FAIL2BAN_DEB_ASC_URL}"
|
|
|
|
|
2022-10-02 11:00:15 +00:00
|
|
|
FINGERPRINT=$(LANG=C gpg --verify fail2ban.deb.asc fail2ban.deb |& sed -n 's#Primary key fingerprint: \(.*\)#\1#p')
|
2022-09-29 07:02:56 +00:00
|
|
|
|
|
|
|
if [[ -z ${FINGERPRINT} ]]
|
|
|
|
then
|
|
|
|
echo 'ERROR: Invalid GPG signature!' >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ${FINGERPRINT} != "${FAIL2BAN_GPG_FINGERPRINT}" ]]
|
|
|
|
then
|
|
|
|
echo "ERROR: Wrong GPG fingerprint!" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
dpkg -i fail2ban.deb 2>&1
|
|
|
|
rm fail2ban.deb fail2ban.deb.asc
|
2022-10-15 10:01:59 +00:00
|
|
|
|
|
|
|
_log 'debug' 'Patching Fail2ban to enable network bans'
|
|
|
|
# Enable network bans
|
|
|
|
# https://github.com/docker-mailserver/docker-mailserver/issues/2669
|
|
|
|
sedfile -i -r 's/^_nft_add_set = .+/_nft_add_set = <nftables> add set <table_family> <table> <addr_set> \\{ type <addr_type>\\; flags interval\\; \\}/' /etc/fail2ban/action.d/nftables.conf
|
2022-09-29 07:02:56 +00:00
|
|
|
}
|
|
|
|
|
2022-09-21 07:31:28 +00:00
|
|
|
function _post_installation_steps
|
|
|
|
{
|
|
|
|
_log 'debug' 'Running post-installation steps (cleanup)'
|
|
|
|
apt-get "${QUIET}" clean
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
_log 'info' 'Finished installing packages'
|
|
|
|
}
|
|
|
|
|
|
|
|
_pre_installation_steps
|
|
|
|
_install_postfix
|
|
|
|
_install_packages
|
2022-09-29 21:26:45 +00:00
|
|
|
_install_dovecot
|
2022-09-29 07:02:56 +00:00
|
|
|
_install_fail2ban
|
2022-09-21 07:31:28 +00:00
|
|
|
_post_installation_steps
|