diff --git a/dist/README.md b/dist/README.md index ba72930..60a30f8 100644 --- a/dist/README.md +++ b/dist/README.md @@ -3,6 +3,14 @@ **Disclaimer:** Most of the files here are maintained in a "best-effort" way. That is, they may break or become outdated from time to time. Caveat emptor. +## integration + scripts + +These directories provide pre-made configuration snippets suitable for +easy integration with external software. + +Usually, this is what you use when you put `import integration/something` in +your config. + ## systemd unit `maddy.service` launches using default config path (/etc/maddy/maddy.conf). diff --git a/dist/install.sh b/dist/install.sh index 35bbcd8..2c97348 100755 --- a/dist/install.sh +++ b/dist/install.sh @@ -6,6 +6,9 @@ fi if [ -z "$FAIL2BANDIR" ]; then FAIL2BANDIR=/etc/fail2ban fi +if [ -z "$CONFDIR" ]; then + CONFDIR=/etc/maddy +fi script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" cd $script_dir @@ -18,3 +21,6 @@ install -Dm 0644 -t "$FAIL2BANDIR/jail.d/" fail2ban/jail.d/* install -Dm 0644 -t "$FAIL2BANDIR/filter.d/" fail2ban/filter.d/* install -Dm 0644 -t "$PREFIX/lib/systemd/system/" systemd/maddy.service systemd/maddy@.service + +install -Dm 0644 -t "$CONFDIR/integration/" integration/rspamd.conf +install -Dm 0755 -t "$PREFIX/bin/" scripts/maddy-rspamd-hook diff --git a/dist/integration/rspamd.conf b/dist/integration/rspamd.conf new file mode 100644 index 0000000..d5ae095 --- /dev/null +++ b/dist/integration/rspamd.conf @@ -0,0 +1,16 @@ +# vim: ft=maddy-conf +# +# This configuration snippet provides integration with message rspamd filtering +# engine via the console utility called rspamc. +# +# To use it, put the following directive in the smtp endpoint configuration block: +# import integration/rspamd +# + +check { + command maddy-rspamd-hook {source_ip} {source_host} {sender} { + code 1 reject + code 2 quarantine + code 3 reject 450 4.7.0 "Message rejected due to a local policy" + } +} diff --git a/dist/scripts/maddy-rspamd-hook b/dist/scripts/maddy-rspamd-hook new file mode 100755 index 0000000..2c99119 --- /dev/null +++ b/dist/scripts/maddy-rspamd-hook @@ -0,0 +1,47 @@ +#!/bin/sh + +out=$(rspamc -i "$1" --helo "$2" -F "$3") +action=$(echo "$out" | grep '^Action:' | cut -d " " -f 2-) +score=$(echo "$out" | grep '^Score:' | cut -d " " -f 2) +spam=$(echo "$out" | grep '^Spam:' | cut -d " " -f 2) + +echo 'X-Spam-Score:' "$score" + +case "$spam" in + "false") + echo 'X-Spam-Flag: NO' + ;; + "true") + echo 'X-Spam-Flag: YES' + ;; +esac + +case "$action" in + "reject") + exit 1 + ;; + "rewrite subject") + exit 2 + ;; + "add header") + exit 2 + ;; + "quarantine") + exit 2 + ;; + "soft reject") + exit 3 + ;; + "no action") + exit 0 + ;; + "greylist") + # Default rspamd configuration uses 'greylist' action a lot, we ignore + # it explicitly since we have no support for greylisting (yet). + exit 0 + ;; + *) + exit 128 + ;; +esac + diff --git a/get.sh b/get.sh index 8885a6c..07351ec 100755 --- a/get.sh +++ b/get.sh @@ -14,8 +14,8 @@ fi if [ "$SYSTEMDUNITS" == "" ]; then SYSTEMDUNITS=$PREFIX/lib/systemd fi -if [ "$CONFPATH" == "" ]; then - CONFPATH=/etc/maddy/maddy.conf +if [ "$CONFDIR" == "" ]; then + CONFDIR=/etc/maddy fi if [ "$SUDO" == "" ]; then SUDO=sudo @@ -142,8 +142,8 @@ create_user() { } install_config() { - echo 'Using configuration path:' $CONFPATH - if ! [ -e "$CONFPATH" ]; then + echo 'Using configuration path:' $CONFDIR/maddy.conf + if ! [ -e "$CONFDIR/maddy.conf" ]; then echo 'Installing default configuration...' >&2 install "$(source_dir)/maddy.conf" /tmp/maddy.conf @@ -160,7 +160,7 @@ install_config() { sed -Ei "s/^\\$\\(primary_domain\) = .+$/$\(primary_domain\) = $DOMAIN/" /tmp/maddy.conf sed -Ei "s/^\\$\\(hostname\) = .+$/$\(hostname\) = $DOMAIN/" /tmp/maddy.conf - $SUDO install -Dm 0644 /tmp/maddy.conf "$CONFPATH" + $SUDO install -Dm 0644 /tmp/maddy.conf "$CONFDIR/maddy.conf" rm /tmp/maddy.conf else echo "Configuration already exists in /etc/maddy/maddy.conf, skipping defaults installation." >&2 diff --git a/package.sh b/package.sh index a401a3b..ef70f4b 100755 --- a/package.sh +++ b/package.sh @@ -15,7 +15,7 @@ if [ "$pkgdir" = "" ]; then rm -rf "$pkgdir" mkdir "$pkgdir" fi -export PREFIX="$pkgdir"/usr FAIL2BANDIR="$pkgdir"/etc/fail2ban CONFPATH="$pkgdir"/etc/maddy/maddy.conf NO_RUN=1 SUDO=fakeroot HOSTNAME=example.org +export PREFIX="$pkgdir"/usr FAIL2BANDIR="$pkgdir"/etc/fail2ban CONFDIR="$pkgdir"/etc/maddy NO_RUN=1 SUDO=fakeroot HOSTNAME=example.org # shellcheck source=get.sh . "$script_dir"/get.sh