2018-12-29 05:10:36 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# === Patches for poste.io free version to be a properly isolated service ===
|
|
|
|
#
|
|
|
|
# - Restricts all public listening ports to the IP(s) associated with the
|
|
|
|
# container's hostname
|
|
|
|
#
|
|
|
|
# - Replaces all localhost listening ports with unix-domain sockets inside
|
|
|
|
# the container
|
|
|
|
#
|
|
|
|
# With these changes, multiple poste.io instances can be run on the same
|
|
|
|
# machine (as long as each container has its own public IP), and no internal
|
2020-02-29 18:53:15 +00:00
|
|
|
# services (such as quota, websockets, etc.) are exposed to the host's
|
2018-12-29 05:10:36 +00:00
|
|
|
# loopback interface.
|
|
|
|
|
|
|
|
set -eu # fail on any errors or undefined variables
|
|
|
|
|
|
|
|
# A tiny DSL for editing files with sed: `~ edit files...; {{ commands }}`
|
|
|
|
edit() { local sed; ::block sed-dsl; sed -i -e "$sed" "$@"; }
|
|
|
|
sed-dsl() { sed."$@"; }
|
|
|
|
sed.sub() { sed+="s~$1~$2~${3-}"$'\n'; }
|
2020-02-29 06:22:11 +00:00
|
|
|
sed.del() { sed+="${1+/$1/}d"$'\n'; }
|
2018-12-29 05:10:36 +00:00
|
|
|
sed.append() { sed+='$a'; ((!$#))||__sedline "$@"; ::block __sedline; sed+=$'\n'; }
|
|
|
|
sed.after() { sed+='/'"$1"'/a'; (($#<2))||__sedline "${@:2}"; ::block __sedline; sed+=$'\n'; }
|
2020-02-29 06:22:11 +00:00
|
|
|
sed.range() { sed+="/$1/,/$2/ {"$'\n'; ::block sed-dsl; sed+=$'}\n'; }
|
2018-12-29 05:10:36 +00:00
|
|
|
__sedline() { sed+="${*/#/\\$'\n'}"; }
|
|
|
|
|
|
|
|
# DSL syntax macros: minified runtime copied from https://github.com/bashup/scale-dsl
|
|
|
|
shopt -q expand_aliases||{ unalias -a;shopt -s expand_aliases;};builtin alias +='{ ::__;::(){ ((!$#))||{ shift;"${__dsl__[@]-::no-dsl}" ' ~='{ ::__;::(){ ((!$#))||{ shift; ' -='"${__dsl__[@]-::no-dsl}" ' '{{=return;return;};__blk__=;set -- "${__blarg__[@]:1}"; ' '}}=};__:: 0 "$@";}';::block(){ ((!$#))||local __dsl__=("$@");${__blk__:+::};};__bsp__=0;::__(){ __bstk__[__bsp__++]="${__blk__:+__blk__=1;$(declare -f ::)}";};__::(){ local __blarg__=("$@");__blk__=1;:: "$@"||set -- $?;__blk__=;local REPLY;${__bstk__[--__bsp__]:+eval "${__bstk__[__bsp__]}"}||:;return $1;}
|
|
|
|
|
|
|
|
|
|
|
|
# === Restrict public ports to the container hostname IP ===
|
|
|
|
|
|
|
|
~ edit /opt/www/webmail/config/config.inc.php; {{
|
|
|
|
# Make webmail connect to the public hostname, instead of localhost
|
|
|
|
+ append ""; {{
|
|
|
|
- "\$config['default_host'] = 'ssl://' . gethostname();"
|
|
|
|
- "\$config['smtp_server'] = 'tls://' . gethostname() . ':587';"
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
|
|
|
|
~ edit /etc/nginx/sites-enabled.templates/{no-,}https; {{
|
|
|
|
# Remove the listen lines that lack an address
|
|
|
|
- del 'listen __HTTP_PORT__;'
|
|
|
|
- del 'listen __HTTPS_PORT__ ssl;'
|
|
|
|
|
|
|
|
# Replace the IPv6 wildcard and any localhost references w/explicit host
|
|
|
|
- sub 'listen \[::\]:' 'listen __HOST__:'
|
|
|
|
- sub localhost '$hostname'
|
|
|
|
}}
|
|
|
|
|
2020-03-06 03:08:46 +00:00
|
|
|
~ edit /opt/haraka-{smtp,submission}/config/plugins; {{
|
|
|
|
# Add our outbound IP routing plugin
|
|
|
|
- append 'outbound_ips'
|
2018-12-29 05:10:36 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
# === Replace localhost ports with unix sockets ====
|
|
|
|
|
|
|
|
# Note: if you change any of these socket names or locations, they must also be
|
|
|
|
# changed in the corresponding files, as applicable:
|
|
|
|
#
|
|
|
|
# - files/etc/dovecot/local.conf
|
|
|
|
# - files/etc/rspamd/override.d/worker-*.inc
|
|
|
|
# - files/opt/haraka-smtp/config/redis.ini
|
|
|
|
|
|
|
|
sockdir=/var/run
|
|
|
|
rspam_web=$sockdir/rspamd-web.sock
|
|
|
|
rspam=$sockdir/rspamd-normal.sock
|
|
|
|
quota=$sockdir/dovecot-quota.sock
|
|
|
|
|
|
|
|
# redis and haraka run unprivileged and so need directories of their own
|
|
|
|
mkdir -p "$sockdir"/redis "$sockdir"/haraka
|
|
|
|
chown redis "$sockdir"/redis
|
|
|
|
chown delivery "$sockdir"/haraka
|
|
|
|
|
|
|
|
redis="$sockdir"/redis/redis.sock
|
2020-02-29 06:23:39 +00:00
|
|
|
haraka_smtp_web=$sockdir/haraka/web-11380.sock
|
|
|
|
haraka_sub_web=$sockdir/haraka/web-11381.sock
|
2018-12-29 05:10:36 +00:00
|
|
|
|
2020-02-29 06:26:16 +00:00
|
|
|
|
2018-12-29 05:10:36 +00:00
|
|
|
# Change nginx proxy settings to use unix sockets
|
|
|
|
|
|
|
|
~ edit /etc/nginx/sites-enabled.templates/{no-,}https; {{
|
|
|
|
- sub 127.0.0.1:11334 unix:"$rspam_web":
|
2020-02-29 06:23:39 +00:00
|
|
|
- sub 'proxy_pass http://127.0.0.1:\$1/' "proxy_pass http://unix:$sockdir/haraka/web-\$1.sock:/"
|
2018-12-29 05:10:36 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
# The rspamc command needs to reference the web socket explicitly
|
|
|
|
|
|
|
|
~ edit /opt/admin/src/AppBundle/Server/System.php; {{
|
|
|
|
- sub "rspamc stat" \
|
|
|
|
"rspamc -h $rspam_web stat"
|
|
|
|
}}
|
|
|
|
~ edit /etc/dovecot/sieve/report-{spam,ham}.sieve; {{
|
|
|
|
- sub '"rspamc" \[' \
|
|
|
|
'"rspamc" ["-h" "'"$rspam_web"'" '
|
|
|
|
}}
|
|
|
|
|
2020-02-29 06:22:11 +00:00
|
|
|
# Disable dovecot quota service on localhost
|
|
|
|
|
|
|
|
~ edit /etc/dovecot/conf.d/90-quota.conf; {{
|
|
|
|
+ range 'inet_listener' '}'; {{
|
|
|
|
- del
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
|
2020-02-29 06:26:16 +00:00
|
|
|
# Haraka plugins need to use sockets for quota instead of ports
|
2018-12-29 05:10:36 +00:00
|
|
|
|
|
|
|
~ edit /opt/haraka-smtp/plugins/dovecot_quota.js; {{
|
|
|
|
- sub "socket\\.connect(13001, '127.0.0.1');" \
|
|
|
|
"socket.connect('$quota');"
|
|
|
|
}}
|
|
|
|
|
2020-02-29 06:23:39 +00:00
|
|
|
# Haraka web servers need to listen on unix sockets
|
2018-12-29 05:10:36 +00:00
|
|
|
|
|
|
|
~ edit /usr/lib/node_modules/Haraka/server.js; {{
|
2020-02-29 06:23:39 +00:00
|
|
|
- sub 'Server.get_listen_addrs(Server.http.cfg, 80)' \
|
|
|
|
'[Server.http.cfg.listen]'
|
|
|
|
+ range '^Server.setup_http_listeners' '^}$'; {{
|
|
|
|
- sub 'const hp = .*' \
|
|
|
|
'const hp = [null, null, host_port];'
|
|
|
|
- sub 'Server.http.server.listen.*$' \
|
2020-02-29 20:17:35 +00:00
|
|
|
'!fs.existsSync(host_port)||fs.unlinkSync(host_port); Server.http.server.listen(host_port, function(){fs.chmodSync(host_port, 0o777);});'
|
2020-02-29 06:23:39 +00:00
|
|
|
}}
|
|
|
|
}}
|
|
|
|
|
|
|
|
~ edit /opt/haraka-smtp/config/http.ini; {{
|
|
|
|
- sub 'listen=127.0.0.1:11380' "listen=$haraka_smtp_web"
|
2018-12-29 05:10:36 +00:00
|
|
|
}}
|
|
|
|
|
2020-02-29 06:23:39 +00:00
|
|
|
~ edit /opt/haraka-submission/config/http.ini; {{
|
|
|
|
- sub 'listen=127.0.0.1:11381' "listen=$haraka_sub_web"
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
2018-12-29 05:10:36 +00:00
|
|
|
# Have haraka talk to rspamd via unix socket
|
|
|
|
|
|
|
|
~ edit /usr/lib/node_modules/Haraka/node_modules/haraka-plugin-rspamd/index.js; {{
|
|
|
|
- del 'port: plugin'
|
|
|
|
- sub 'host: plugin.*,' \
|
|
|
|
"socketPath: '$rspam',"
|
|
|
|
}}
|
|
|
|
|
2018-12-29 06:00:50 +00:00
|
|
|
# Configure redis to listen on a unix socket, and rspamd+admin to connect there
|
2018-12-29 05:10:36 +00:00
|
|
|
|
|
|
|
~ edit /etc/redis/redis.conf; {{
|
|
|
|
- sub "^port 6379" "port 0" # disable the localhost port
|
|
|
|
- append "" "unixsocket $redis" "unixsocketperm 777"
|
|
|
|
}}
|
|
|
|
|
|
|
|
~ edit /etc/rspamd/local.d/{redis,statistic}.conf; {{
|
|
|
|
- sub 'servers = "127.*;$' \
|
|
|
|
'servers = "'"$redis"'";'
|
|
|
|
}}
|
2018-12-29 06:00:50 +00:00
|
|
|
|
2020-02-29 18:53:15 +00:00
|
|
|
~ edit /opt/admin/src/AppBundle/Resources/config/services.yml; {{
|
|
|
|
- sub '^ Predis\\Client: .*$' \
|
|
|
|
' Predis\\Client: { arguments: [ "unix:'"$redis"'" ] }'
|
|
|
|
|
|
|
|
# The above change won't take effect unless the service cache is cleared:
|
|
|
|
rm -rf /opt/admin/var/cache/prod
|
2018-12-29 05:10:36 +00:00
|
|
|
}}
|