mainly alerting improvements
[distro-setup] / mail-setup
1 #!/bin/bash
2 # * intro
3 # Copyright (C) 2019 Ian Kelling
4 # SPDX-License-Identifier: AGPL-3.0-or-later
5
6
7 # todo: setup an alert for bouncing test emails.
8
9 # todo: bounces to my fsf mail can come from fsf@iankelling.org,
10 # think about making bounces go from the original address.
11
12 # todo: add a prometheus alert for dovecot.
13
14 # todo: handle errors like this:
15 # Mar 02 12:44:26 kw systemd[1]: exim4.service: Found left-over process 68210 (exim4) in control group while starting unit. Ignoring.
16 # Mar 02 12:44:26 kw systemd[1]: This usually indicates unclean termination of a previous run, or service implementation deficiencies.
17
18 # todo: harden dovecot. need to do some research. one way is for it to only listen on a wireguard vpn interface, so only clients that are on the vpn can access it.
19 # todo: consider hardening cups listening on 0.0.0.0
20 # todo: stop/disable local apache, and rpc.mountd, and kdeconnect when not in use.
21
22 # todo: hosts should only allow external mail that is authed and
23 # destined for backup route. it is a minor issue since traffic is
24 # limited to the wghole network.
25
26 # todo: emailing info@amnimal.ninja produces a bounce, user doesn't exist
27 # instead of a simple rejection like it should.
28
29 # todo: run mailping test after running, or otherwise
30 # clear out terminal alert
31
32 # todo: on bk, dont send email if mailvpn is not up
33
34 # todo: mailtest-check should check on bk too
35
36 # todo: disable postgrey
37
38 # todo: in testforward-check, we should also look
39
40 # todo: test that bounces dont help create valid mailtest-check
41
42 # todo: move mail stuff in distro-end into this file
43
44 # todo: consider rotating dkim & publishing key so every past email I sent
45 # isnt necessarily signed
46
47 # todo: consider how to get clamav out of Debian-exim group
48 # so it cant read/write the whole mail spool, for better
49 # security.
50
51 # todo: create a cronjob to update or warn on expiring dnssec keys
52
53 # todo: we should test failed mail daily or so
54 # failed cronjob, failed sysd-log-once,
55 # a local bounce from a cronjob, a local bounce
56 # to a bad remote address, perhaps a local failure
57 # when the sending daemon is down.
58 # And send an alert email if no alerts have been sent
59 # in 2 or 3 days or something. todo, test cron mail on li.
60
61 # todo: look at mailinabox extra dns records, note these changelogs:
62 # - An MTA-STS policy for incoming mail is now published (in DNS and over HTTPS) when the primary hostname and email address domain both have a signed TLS certificate installed, allowing senders to know that an encrypted connection should be enforced.
63 # - The per-IP connection limit to the IMAP server has been doubled to allow more devices to connect at once, especially with multiple users behind a NAT.
64 #
65
66 # todo: mailtest-check failure on remote hosts is not going to alert me.
67 # sort that out.
68 # todo: test mail failure as well as success.
69 #
70 # todo: validate that mailtest-check is doing dnsbl checks.
71
72 # background: I want to run exim in a network namespace so it can send
73 # and receive through a vpn. This is needed so it can do ipv6, because
74 # outside the namespace if we dont have ipv6, to send ipv6 through the
75 # vpn, we have to send all our ipv6 through the vpn. I did this for a
76 # long time, it was fine, but it causes various pains, like increased
77 # latency, increased recaptcha because my ip is from a data center, just
78 # various issues I dont want on all the time. The problem with the
79 # namespace is that all kinds of programs want to invoke exim, but they
80 # wont be in the namespace. I could replace exim with a wrapper that
81 # jumps into the namespace, i tried that, it works fine. One remaining
82 # problem was that I would have needed to hook into exim upgrades to
83 # move exim and replace it with my wrapper script. Also, my script to
84 # join the namespace is not super reliable because it uses a pgrep.
85 # Instead, I should have created a systemd service for a process that
86 # will never die and just writes its pid somewhere convenient.
87 # That implementation
88 # is below here:
89 #
90 # sudoers:
91 # user ALL=(ALL) /usr/sbin/exim4
92 #
93 # move exim4 to eximian, use this script for exim4:
94 #
95 # #!/bin/bash
96 # if ip a show veth1-mail &>/dev/null; then
97 # /usr/sbin/eximian "$@"
98 # exit
99 # fi
100 # dosudo=false
101 # if [[ $USER && $USER != root ]]; then
102 # dosudo=true
103 # fi
104 # pid=$(pgrep -f "/usr/sbin/openvpn .* --config /etc/openvpn/.*mail.conf")
105 # if $dosudo; then
106 # sudo nsenter -t $pid -n -m sudo -u $USER /usr/sbin/eximian "$@"
107 # else
108 # nsenter -t $pid -n -m /usr/sbin/eximian "$@"
109 # fi
110 # ## end script
111 #
112 # an alternate solution: there is a small setguid program for
113 # network namespaces in my bookmarks.
114 #
115 # However, the solution I went with is: have 2 exim
116 # configs. A nonstandard location for the daemon that runs
117 # in the namespace. For all other invocations, it uses
118 # the default config location, which is altered to be
119 # in a smarthost config which sends mail to the deaemon.
120 #
121 # I have a bash function, enn to invoke exim like the daemon is running.
122 # and mailbash to just enter its network namespace.
123
124 if [ -z "$BASH_VERSION" ]; then echo "error: shell is not bash" >&2; exit 1; fi
125
126 shopt -s nullglob
127
128 if [[ -s /usr/local/lib/err ]]; then
129 source /usr/local/lib/err
130 elif [[ -s /a/bin/errhandle/err ]]; then
131 source /a/bin/errhandle/err
132 else
133 err "no err tracing script found"
134 fi
135 source /a/bin/distro-functions/src/identify-distros
136 source /a/bin/distro-functions/src/package-manager-abstractions
137
138 # has nextcloud_admin_pass in it
139 f=/p/c/machine_specific/$HOSTNAME/mail
140 if [[ -e $f ]]; then
141 # shellcheck source=/p/c/machine_specific/bk/mail
142 source $f
143 fi
144
145
146 [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@"
147
148 # note, this is hardcoded in /etc/exim4/conf.d/main/000_local
149 u=$(id -nu 1000)
150
151
152 usage() {
153 cat <<EOF
154 Usage: ${0##*/} anything_here_to_debug
155 Setup exim4 & dovecot & related things
156
157 -h|--help Print help and exit.
158 EOF
159 exit $1
160 }
161
162 # debug output if we pass any arg
163 if (( $# )); then
164 set -x
165 fi
166
167
168 ####### instructions for icedove #####
169 # Incoming mail server: mail.iankelling.org, port 143, username iank, connection security starttls, authentication method normal password,
170 # then click advanced so it accepts it.
171 # we could also just use 127.0.0.1 with no ssl
172 #
173 # hamburger -> preferences -> preferences -> advanced tab -> config editor button -> security.ssl.enable_ocsp_must_staple = false
174 # background: dovecot does not yet have ocsp stapling support
175 # reference: https://community.letsencrypt.org/t/simple-guide-using-lets-encrypt-ssl-certs-with-dovecot/2921
176 #
177 # for phone, k9mail, fdroid, same thing but username alerts, pass in ivy-pass.
178 # also, bk.b8.nz for secondary alerts, username is iank. same alerts pass.
179 # fetching mail settings: folder poll frequency 10 minutes.
180 # account settings, fetching mail, push folders: All. Then disable the persistent notification.
181 #######
182
183
184 # * perstent password instructions
185 # Note: for cert cron, we need to manually run first to accept known_hosts
186
187 # # exim passwords:
188 # # for hosts which have all private files I just use the same user
189 # # for other hosts, each one get\'s their own password.
190 # # for generating secure pass, and storing for server too:
191 # f=$(mktemp)
192 # host=tp
193 # apg -m 50 -x 70 -n 1 -a 1 -M CLN >$f
194 # s sed -i "/^$host:/d" /p/c/filesystem/etc/exim4/passwd
195 # echo "$host:$(mkpasswd -m sha-512 -s <$f)" >>/p/c/filesystem/etc/exim4/passwd
196 # #reference: exim4_passwd_client(5)
197 # dir=/p/c/machine_specific/$host/filesystem/etc/exim4
198 # mkdir -p $dir
199 # echo "mail.iankelling.org:$host:$(<$f)" > $dir/passwd.client
200 # # then run this script
201
202 # # dovecot password, i just need 1 as I\'m the only user
203 # mkdir /p/c/filesystem/etc/dovecot
204 # echo "iank:$(doveadm pw -s SHA512-CRYPT)::::::" >>/p/c/filesystem/etc/dovecot/users
205
206 ####### end perstent password instructions ######
207
208
209 # * dkim dns
210 # # Remove 1 level of comments in this section, set the domain var
211 # # for the domain you are setting up, then run this and copy dns settings
212 # # into dns.
213 # domain=iankelling.org
214 # c /p/c/filesystem/etc/exim4
215 # # this has several bugs addressed in comments, but it was helpful
216 # # https://debian-administration.org/article/718/DKIM-signing_outgoing_mail_with_exim4
217
218 # openssl genrsa -out $domain-private.pem 2048
219 # # Then, to get the public key strings to put in bind:
220
221 # # selector is needed for having multiple keys for one domain.
222 # # I dun do that, so just use a static one: li
223 # # Debadmin page does not have v=, fastmail does, and this
224 # # says it\'s recommended in 3.6.1, default is DKIM1 anyways.
225 # # https://www.ietf.org/rfc/rfc6376.txt
226 # # Join and print all but first and last line.
227 # # last line: swap hold & pattern, remove newlines, print.
228 # # lines 2+: append to hold space
229 # echo "bind txt record: remember to truncate $domain so its relative to the bind zone"
230 # cat <<EOF
231 # a._domainkey.$domain TXT (
232 # "v=DKIM1\059 k=rsa\059 p=$(openssl rsa -in $domain-private.pem -pubout |&sed -rn '${x;s/\n//g;s/^(.*)(.{240}$)/\1"\n"\2/p};3,$H')" )
233 # EOF
234 # # sed explanation: skip the first few lines, then put them into the hold space, then
235 # # on the last line, back to the patern space, remove the newlines, then add a newline
236 # # at the last char - 240, because bind txt records need strings <=255 chars,
237 # # other dkim stuff at the begining is is 25 chars, and the pubkey is 393, so this
238 # # leaves us a bit of extra room at the end and a bunch at the beginning.
239
240 # # selector was also put into /etc/exim4/conf.d/main/000_local,
241
242 # * dmarc dns
243
244 # # 2017-02 dmarc policies:
245 # # host -t txt _dmarc.gmail.com
246 # # yahoo: p=reject, hotmail: p=none, gmail: p=none, fastmail none for legacy reasons
247 # # there were articles claiming gmail would be changing
248 # # to p=reject, in early 2017, which didn\'t happen. I see no sources on them. It\'s
249 # # expected to cause problems
250 # # with a few old mailing lists, copying theirs for now.
251 #
252 # echo "dmarc dns, name: _dmarc value: v=DMARC1; p=none; rua=mailto:mailauth-reports@$domain"
253
254 # * other dns
255
256 # # 2017-02 spf policies:
257 # # host -t txt lists.fedoraproject.org
258 # # google ~all, hotmail ~all, yahoo: ?all, fastmail ?all, outlook ~all
259 # # i include fastmail\'s settings, per their instructions,
260 # # and follow their policy. In mail in a box, or similar instructions,
261 # # I\'ve seen recommended to not use a restrictive policy.
262
263 # # to check if dns has updated, you do
264 # host -a mesmtp._domainkey.$domain
265
266 # # mx records,
267 # # setting it to iankelling.org would work the same, but this
268 # # is more flexible, I could change where mail.iankelling.org pointed.
269 # cat <<'EOF'
270 # mx records, 2 records each, for * and empty domain
271 # pri 10 mail.iankelling.org
272 # EOF
273
274 # # dnssec
275 # from brc2, run dnsecgen then dsign, update named.local.conf, publish keys to registrar
276
277 # * functions & constants
278
279 pre="${0##*/}:"
280 m() { printf "$pre %s\n" "$*"; "$@"; }
281 e() { printf "$pre %s\n" "$*"; }
282 err() { printf "$pre %s\n" "$*" >&2; exit 1; }
283
284 reload=false
285 # This file is so if we fail in the middle and rerun, we dont lose state
286 if [[ -e /var/local/mail-setup-reload ]]; then
287 reload=true
288 fi
289 i() { # install file
290 local tmp tmpdir dest="$1"
291 local base="${dest##*/}"
292 local dir="${dest%/*}"
293 if [[ $dir != "$base" ]]; then
294 mkdir -p ${dest%/*}
295 fi
296 ir=false # i result
297 tmpdir=$(mktemp -d)
298 cat >$tmpdir/"$base"
299 tmp=$(rsync -ic $tmpdir/"$base" "$dest")
300 if [[ $tmp ]]; then
301 printf "%s\n" "$tmp"
302 ir=true
303 if [[ $dest == /etc/systemd/system/* ]]; then
304 touch /var/local/mail-setup-reload
305 reload=true
306 fi
307 fi
308 rm -rf $tmpdir
309 }
310 setini() {
311 key="$1" value="$2" section="$3"
312 file="/etc/radicale/config"
313 sed -ri "/ *\[$section\]/,/^ *\[[^]]+\]/{/^\s*${key}[[:space:]=]/d};/ *\[$section\]/a $key = $value" "$file"
314 }
315 soff () {
316 for service; do
317 # ignore services that dont exist
318 if systemctl cat $service &>/dev/null; then
319 m systemctl disable --now $service
320 fi
321 done
322 }
323 sre() {
324 for service; do
325 m systemctl restart $service
326 m systemctl enable $service;
327 done
328 }
329 mailhost() {
330 [[ $HOSTNAME == "$MAIL_HOST" ]]
331 }
332 e() { printf "%s\n" "$*"; }
333 reifactive() {
334 for service; do
335 if systemctl is-active $service >/dev/null; then
336 m systemctl restart $service
337 fi
338 done
339 }
340 stopifactive() {
341 for service; do
342 if systemctl is-active $service >/dev/null; then
343 m systemctl stop $service
344 fi
345 done
346 }
347
348 mxhost=mx.iankelling.org
349 mxport=587
350 forward=$u@$mxhost
351
352 # old setup. left as comment for example
353 # mxhost=mail.messagingengine.com
354 # mxport=587
355 # forward=ian@iankelling.org
356
357 smarthost="$mxhost::$mxport"
358 uhome=$(eval echo ~$u)
359
360 # Somehow on one machine, a file got written with 664 perms.
361 # just being defensive here.
362 umask 0022
363
364 source /a/bin/bash_unpublished/source-state
365 if [[ ! $MAIL_HOST ]]; then
366 err "\$MAIL_HOST not set"
367 fi
368
369 bhost_t=false
370 case $HOSTNAME in
371 $MAIL_HOST) : ;;
372 kd|frodo|x2|x3|kw|sy|bo)
373 bhost_t=true
374 ;;
375 esac
376
377
378 # * Install universal packages
379
380
381 # installs epanicclean iptables-exim ip6tables-exim
382 /a/bin/ds/install-my-scripts
383
384 if [[ $(debian-codename-compat) == bionic ]]; then
385 cat >/etc/apt/preferences.d/spamassassin <<'EOF'
386 Package: spamassassin sa-compile spamc
387 Pin: release n=focal,o=Ubuntu
388 Pin-Priority: 500
389 EOF
390 fi
391
392 # light version of exim does not have sasl auth support.
393 # note: for bitfolk hosts, unbound has important config with conflink.
394 pi-nostart exim4 exim4-daemon-heavy spamassassin unbound clamav-daemon wireguard
395
396 # note: pyzor debian readme says you need to run some initialization command
397 # but its outdated.
398 pi spf-tools-perl p0f postgrey pyzor razor jq moreutils certbot fail2ban
399 case $HOSTNAME in
400 je) : ;;
401 # not included due to using wireguard: openvpn
402 *) pi wget git unzip iptables ;;
403 esac
404 # bad packages that sometimes get automatically installed
405 pu openresolv resolvconf
406
407 soff openvpn
408
409
410 if [[ $(debian-codename) == etiona ]]; then
411 # ip6tables stopped loading on boot. openvpn has reduced capability set,
412 # so running iptables as part of openvpn startup wont work. This should do it.
413 pi iptables-persistent
414 cat >/etc/iptables/rules.v6 <<'EOF'
415 *mangle
416 COMMIT
417 *nat
418 COMMIT
419 EOF
420 # load it now.
421 m ip6tables -S >/dev/null
422 fi
423
424 # our nostart pi fails to avoid enabling
425
426
427 # * Mail clean cronjob
428
429 i /etc/systemd/system/mailclean.timer <<'EOF'
430 [Unit]
431 Description=Run mailclean daily
432
433 [Timer]
434 OnCalendar=monthly
435
436 [Install]
437 WantedBy=timers.target
438 EOF
439
440 i /etc/systemd/system/mailclean.service <<EOF
441 [Unit]
442 Description=Delete and archive old mail files
443 After=multi-user.target
444
445 [Service]
446 User=$u
447 Type=oneshot
448 ExecStart=/usr/local/bin/sysd-mail-once mailclean /a/bin/distro-setup/mailclean
449 EOF
450
451 # * postgrey
452
453
454 i /etc/default/postgrey <<'EOF'
455 POSTGREY_OPTS="--exim --unix=/var/run/postgrey/postgrey.sock --retry-window=4 --max-age=60"
456 EOF
457
458 # * clamav
459
460 m usermod -a -G Debian-exim clamav
461
462 i /etc/systemd/system/clamav-daemon.service.d/fix.conf <<EOF
463 [Service]
464 ExecStartPre=-/bin/mkdir /var/run/clamav
465 ExecStartPre=/bin/chown clamav /var/run/clamav
466 EOF
467
468 # * mail vpn config
469
470 # old.
471 #vpnser=mailvpn.service
472 # todo: this hangs if it cant resolv the endpoint. we
473 # want it to just retry in the background.
474 vpnser=wg-quick@wgmail.service
475
476 case $HOSTNAME in
477 $MAIL_HOST)
478 rsync -aiSAX --chown=root:root --chmod=g-s /p/c/filesystem/etc/wireguard/ /etc/wireguard
479 bindpaths="/etc/127.0.0.1-resolv:/run/systemd/resolve /etc/basic-nsswitch:/etc/resolved-nsswitch:norbind"
480 ;;&
481 bk)
482 bindpaths="/etc/10.173.8.1-resolv:/etc/127.0.0.1-resolv"
483 ;;&
484 *)
485 d=/p/c/machine_specific/$HOSTNAME/filesystem/etc/wireguard/
486 if [[ -d $d ]]; then
487 rsync -aiSAX --chown=root:root --chmod=g-s $d /etc/wireguard
488 fi
489 ;;
490 esac
491
492 case $HOSTNAME in
493 li) : ;;
494 *)
495 i /etc/systemd/system/wg-quick@wgmail.service.d/override.conf <<EOF
496 [Unit]
497 Requires=mailnn.service
498 JoinsNamespaceOf=mailnn.service
499 BindsTo=mailnn.service
500 StartLimitIntervalSec=0
501
502 [Service]
503 PrivateNetwork=true
504 # i dont think we need any of these, but it doesnt hurt to stay consistent
505 BindPaths=$bindpaths
506
507 Restart=on-failure
508 RestartSec=20
509 EOF
510 ;;
511 esac
512
513
514 # https://selivan.github.io/2017/12/30/systemd-serice-always-restart.html
515 i /etc/systemd/system/mailvpn.service <<EOF
516 [Unit]
517 Description=OpenVPN tunnel for mail
518 After=syslog.target network-online.target mailnn.service
519 Wants=network-online.target
520 Documentation=man:openvpn(8)
521 Documentation=https://community.openvpn.net/openvpn/wiki/Openvpn24ManPage
522 Documentation=https://community.openvpn.net/openvpn/wiki/HOWTO
523 # needed to continually restatr
524 JoinsNamespaceOf=mailnn.service
525 BindsTo=mailnn.service
526 StartLimitIntervalSec=0
527
528 [Service]
529 Type=notify
530 RuntimeDirectory=openvpn-client
531 RuntimeDirectoryMode=0710
532 WorkingDirectory=/etc/openvpn/client
533 ExecStart=/usr/sbin/openvpn --suppress-timestamps --nobind --config /etc/openvpn/client/mail.conf
534 #CapabilityBoundingSet=CAP_IPC_LOCK CAP_NET_ADMIN CAP_NET_RAW CAP_SETGID CAP_SETUID CAP_SYS_CHROOT CAP_DAC_OVERRIDE
535 LimitNPROC=10
536 # DeviceAllow=/dev/null rw
537 # DeviceAllow=/dev/net/tun rw
538 PrivateNetwork=true
539 # in the network namespace, we cant connect to systemd-resolved on 127.0.0.53,
540 # because of
541 # https://unix.stackexchange.com/questions/445782/how-to-allow-systemd-resolved-to-listen-to-an-interface-other-than-loopback
542 # there is a workaround there, but i dont think its really worth it,
543 # the mail server is fine with a static dns anyways.
544 # This thread is also interesting,
545 # https://github.com/slingamn/namespaced-openvpn/issues/7
546 # todo: the iptables rule at the bottom could be useful to prevent
547 # dns from leaking in my network namespaced vpn.
548 # I also like the idea of patching systemd-resolved so it
549 # will listen on other interfaces, but its not worth my time.
550 BindPaths=$bindpaths
551 Restart=always
552 # time to sleep before restarting a service
553 RestartSec=20
554
555 [Install]
556 WantedBy=multi-user.target
557 EOF
558
559 i /etc/systemd/system/mailnnroute.service <<'EOF'
560 [Unit]
561 Description=Network routing for mailnn
562 After=syslog.target network-online.target mailnn.service
563 Wants=network-online.target
564 JoinsNamespaceOf=mailnn.service
565 BindsTo=mailnn.service
566 StartLimitIntervalSec=0
567
568 [Service]
569 Type=simple
570 RemainAfterExit=true
571 PrivateNetwork=true
572 ExecStart=/usr/bin/flock -w 20 /tmp/newns.flock /a/bin/newns/newns -n 10.173.8 start mail
573 ExecStop=/usr/bin/flock -w 20 /tmp/newns.flock /a/bin/newns/newns stop mail
574 Restart=always
575 RestartSec=20
576
577
578 [Install]
579 WantedBy=multi-user.target
580 EOF
581
582 #
583 i /etc/systemd/system/mailnn.service <<'EOF'
584 [Unit]
585 Description=Network Namespace for mail vpn service that will live forever and cant fail
586 After=syslog.target network-online.target
587 Wants=network-online.target
588
589 [Service]
590 Type=simple
591 PrivateNetwork=true
592 ExecStart=/bin/sleep infinity
593
594 [Install]
595 WantedBy=multi-user.target
596 EOF
597
598 i /etc/systemd/system/mailbindwatchdog.service <<EOF
599 [Unit]
600 Description=Watchdog to restart services relying on systemd-resolved dir
601 After=syslog.target network-online.target
602 Wants=network-online.target
603 BindsTo=mailnn.service
604
605 [Service]
606 Type=simple
607 ExecStart=/usr/local/bin/mailbindwatchdog $vpnser ${nn_progs[@]} unbound.service radicale.service
608 Restart=always
609 # time to sleep before restarting a service
610 RestartSec=10
611
612 [Install]
613 WantedBy=multi-user.target
614 EOF
615
616
617
618 # old service name
619 rm -fv /etc/systemd/system/openvpn-client-mail@.service
620
621 # We use a local unbound because systemd-resolved wont accept our
622 # request, it will only listen to 127.0.0.53 in the main network
623 # namespace, and rejected feature requests to change that (although I
624 # could change the code and recompile), but anyways, that could answer
625 # with things specific to the lan that aren't applicable in this
626 # namespace, and since unbound is a recursive resolver, it means we just
627 # use our own ip against dnsbl rate limits.
628 #
629 # If we ever notice this change, chattr +i on it
630 # trust-ad is used in t10+, glibc 2.31
631
632 i /etc/127.0.0.1-resolv/stub-resolv.conf <<'EOF'
633 nameserver 127.0.0.1
634 options edns0 trust-ad
635 EOF
636
637 i /etc/127.0.0.53-resolv/stub-resolv.conf <<'EOF'
638 nameserver 127.0.0.53
639 options edns0 trust-ad
640 EOF
641
642
643 i /etc/10.173.8.1-resolv/stub-resolv.conf <<'EOF'
644 nameserver 10.173.8.1
645 options edns0 trust-ad
646 EOF
647
648 # this is just a bug fix for trisquel.
649 f=/etc/apparmor.d/usr.sbin.unbound
650 line="/usr/sbin/unbound flags=(attach_disconnected) {"
651 if ! grep -qFx "$line" $f; then
652 badline="/usr/sbin/unbound {"
653 if ! grep -qFx "$badline" $f; then
654 err expected line in $f not found
655 fi
656 sed -i "s,^$badline$,$line," $f
657 if systemctl is-active apparmor &>/dev/null; then
658 m systemctl reload apparmor
659 fi
660 fi
661
662 # note: anything added to nn_progs needs corresponding rm
663 # down below in the host switch
664 nn_progs=(exim4)
665 if mailhost; then
666 # Note dovecots lmtp doesnt need to be in the same nn to accept delivery.
667 # Its in the nn so remote clients can connect to it.
668 nn_progs+=(spamassassin dovecot)
669 fi
670
671 case $HOSTNAME in
672 $MAIL_HOST)
673 # todo, should this be after vpn service
674 i /etc/systemd/system/unbound.service.d/nn.conf <<EOF
675 [Unit]
676 After=mailnn.service
677 JoinsNamespaceOf=mailnn.service
678 BindsTo=mailnn.service
679 StartLimitIntervalSec=0
680
681 [Service]
682 PrivateNetwork=true
683 # note the nsswitch bind is actually not needed for bk, but
684 # its the same file so it does no harm.
685 BindPaths=$bindpaths
686
687 Restart=always
688 RestartSec=20
689 EOF
690
691 # sooo, there are a few ways to get traffic from the mail network
692 # namespace to go over the wghole.
693 #
694 #1: unify the mail vpn and wghole
695 # into 1 network. this seems simple and logical, so I'm doing it.
696 # One general downside is tying things together, if I need to mess
697 # with one thing, it breaks the other. Oh well for now.
698 #
699 # 2. We can route 10.5.3.0/24 out of the mail nn and nat it into wghole.
700 #
701 # 3. We can setup the routing to happen on li, which seemed like I
702 # just needed to add 10.8.0.4/24 to AllowedIPs in at least the
703 # wghole clients, but I think that is kind of hacky and breaks ipv4
704 # routing within the mailvpn, it happened to work just because exim
705 # prefers ipv6 and that was also available in the mailvpn.
706 #
707 # 4. Put the hole interface into the mail network namespace. This
708 # doesn't work if the mail vpn is wg. For openvpn, it bypasses the
709 # vpn routing and establishes a direct connection. I only use the
710 # hole vpn for randomish things, it should be fine to join the mail
711 # nn for that. There should be some way to fix the routing issue
712 # by doing manual routing, but that doesn't seem like a good use of time.
713 # relevant:
714 # https://www.wireguard.com/netns/#
715 #
716 # for wireguard debugging
717 # echo module wireguard +p > /sys/kernel/debug/dynamic_debug/control
718 # dmesg -w
719
720 ;;&
721 $MAIL_HOST|bk)
722 for unit in ${nn_progs[@]}; do
723 i /etc/systemd/system/$unit.service.d/nn.conf <<EOF
724 [Unit]
725
726 # Wants appears better than requires because with requires,
727 # if the vpnser fails to start, this service won't get run at
728 # all, even if the vpnser starts on an automatic restart.
729
730 Wants=$vpnser
731 After=network.target mailnn.service $vpnser
732 JoinsNamespaceOf=mailnn.service
733 BindsTo=mailnn.service
734 StartLimitIntervalSec=0
735
736 [Service]
737 PrivateNetwork=true
738 # note the nsswitch bind is actually not needed for bk, but
739 # its the same file so it does no harm.
740 BindPaths=$bindpaths
741
742 Restart=always
743 RestartSec=20
744 EOF
745 done
746 ;;
747 *)
748 for unit in exim4 spamassassin dovecot unbound; do
749 f=/etc/systemd/system/$unit.service.d/nn.conf
750 if [[ -s $f ]]; then
751 rm -fv $f
752 reload=true
753 fi
754 done
755 ;;
756 esac
757
758 # * spamassassin config
759 i /etc/sysctl.d/80-iank-mail.conf <<'EOF'
760 # see exim spec
761 net.netfilter.nf_conntrack_tcp_timeout_close_wait = 120
762 EOF
763 if $ir; then
764 m sysctl -p
765 fi
766
767 i /etc/spamassassin/mylocal.cf <<'EOF'
768 # this is mylocal.cf because the normal local.cf has a bunch of upstream stuff i dont want to mess with
769
770 # /usr/share/doc/exim4-base/README.Debian.gz:
771 # SpamAssassin's default report should not be used in a add_header
772 # statement since it contains empty lines. (This triggers e.g. Amavis'
773 # warning "BAD HEADER SECTION, Improper folded header field made up
774 # entirely of whitespace".) This is a safe, terse alternative:
775 clear_report_template
776 report (_SCORE_ / _REQD_ requ) _TESTSSCORES(,)_ autolearn=_AUTOLEARN
777 uridnsbl_skip_domain iankelling.org
778 uridnsbl_skip_domain amnimal.ninja
779 uridnsbl_skip_domain expertpathologyreview.com
780 uridnsbl_skip_domain zroe.org
781 EOF
782
783 # 2020-10-19 remove old file. remove this when all hosts updated
784 rm -fv /etc/systemd/system/spamddnsfix.{timer,service}
785
786 i /etc/default/spamassassin <<'EOF'
787 # defaults plus debugging flags for an issue im having
788 OPTIONS="--create-prefs --max-children 5 --helper-home-dir"
789 PIDFILE="/var/run/spamd.pid"
790 # my additions
791 NICE="--nicelevel 15"
792 CRON=1
793 EOF
794 ##### end spamassassin config
795
796
797 # * Update mail cert
798 if [[ -e /p/c/filesystem ]]; then
799 # note, man openvpn implies we could just call mail-route on vpn startup/shutdown with
800 # systemd, buuut it can remake the tun device unexpectedly, i got this in the log
801 # after my internet was down for a bit:
802 # NOTE: Pulled options changed on restart, will need to close and reopen TUN/TAP device.
803 m /a/exe/vpn-mk-client-cert -b mailclient -n mail li.iankelling.org
804 fi
805
806 # With openvpn, I didn't get around to persisting the openvpn
807 # cert/configs into /p/c/machine_specific/bk, so I had this case to
808 # manually get the cert. However, we aren't using openvpn anymore, so it
809 # is commented out.
810 #
811 # case $HOSTNAME in
812 # bk)
813 # if [[ ! -e /etc/openvpn/client/mail.conf ]]; then
814 # echo "$0: error: first, on a system with /p/c/filesystem, run mail-setup, or the vpn-mk-client-cert line above this err" 2>&2
815 # exit 1
816 # fi
817 # ;;
818 # esac
819
820 m rsync -aiSAX --chown=root:root --chmod=g-s /a/bin/ds/mail-cert-cron /usr/local/bin
821
822 i /etc/systemd/system/mailcert.service <<'EOF'
823 [Unit]
824 Description=Mail cert rsync
825 After=multi-user.target
826
827 [Service]
828 Type=oneshot
829 ExecStart=/usr/local/bin/sysd-mail-once mailcert /usr/local/bin/mail-cert-cron
830 EOF
831 i /etc/systemd/system/mailcert.timer <<'EOF'
832 [Unit]
833 Description=Run mail-cert once a day
834
835 [Timer]
836 OnCalendar=daily
837
838 [Install]
839 WantedBy=timers.target
840 EOF
841
842
843 wghost=${HOSTNAME}wg.b8.nz
844 if $bhost_t && [[ ! -e /etc/exim4/certs/$wghost/privkey.pem ]]; then
845 certbot -n --manual-public-ip-logging-ok --eff-email --agree-tos -m letsencrypt@iankelling.org \
846 certonly --manual --preferred-challenges=dns \
847 --manual-auth-hook /a/bin/ds/le-dns-challenge \
848 --manual-cleanup-hook /a/bin/ds/le-dns-challenge-cleanup \
849 --deploy-hook /a/bin/ds/le-exim-deploy -d $wghost
850 fi
851
852 # * fail2ban
853
854 # todo: test that these configs actually work, eg run
855 # s iptables-exim -S
856 # and see someone is banned.
857
858 sed 's/^ *before *= *iptables-common.conf/before = iptables-common-exim.conf/' \
859 /etc/fail2ban/action.d/iptables-multiport.conf| i /etc/fail2ban/action.d/iptables-exim.conf
860 i /etc/fail2ban/action.d/iptables-common-exim.conf <<'EOF'
861 # iank: same as iptables-common, except iptables is iptables-exim, ip6tables is ip6tables-exim
862
863 # Fail2Ban configuration file
864 #
865 # Author: Daniel Black
866 #
867 # This is a included configuration file and includes the definitions for the iptables
868 # used in all iptables based actions by default.
869 #
870 # The user can override the defaults in iptables-common.local
871 #
872 # Modified: Alexander Koeppe <format_c@online.de>, Serg G. Brester <serg.brester@sebres.de>
873 # made config file IPv6 capable (see new section Init?family=inet6)
874
875 [INCLUDES]
876
877 after = iptables-blocktype.local
878 iptables-common.local
879 # iptables-blocktype.local is obsolete
880
881 [Definition]
882
883 # Option: actionflush
884 # Notes.: command executed once to flush IPS, by shutdown (resp. by stop of the jail or this action)
885 # Values: CMD
886 #
887 actionflush = <iptables> -F f2b-<name>
888
889
890 [Init]
891
892 # Option: chain
893 # Notes specifies the iptables chain to which the Fail2Ban rules should be
894 # added
895 # Values: STRING Default: INPUT
896 chain = INPUT
897
898 # Default name of the chain
899 #
900 name = default
901
902 # Option: port
903 # Notes.: specifies port to monitor
904 # Values: [ NUM | STRING ] Default:
905 #
906 port = ssh
907
908 # Option: protocol
909 # Notes.: internally used by config reader for interpolations.
910 # Values: [ tcp | udp | icmp | all ] Default: tcp
911 #
912 protocol = tcp
913
914 # Option: blocktype
915 # Note: This is what the action does with rules. This can be any jump target
916 # as per the iptables man page (section 8). Common values are DROP
917 # REJECT, REJECT --reject-with icmp-port-unreachable
918 # Values: STRING
919 blocktype = REJECT --reject-with icmp-port-unreachable
920
921 # Option: returntype
922 # Note: This is the default rule on "actionstart". This should be RETURN
923 # in all (blocking) actions, except REJECT in allowing actions.
924 # Values: STRING
925 returntype = RETURN
926
927 # Option: lockingopt
928 # Notes.: Option was introduced to iptables to prevent multiple instances from
929 # running concurrently and causing irratic behavior. -w was introduced
930 # in iptables 1.4.20, so might be absent on older systems
931 # See https://github.com/fail2ban/fail2ban/issues/1122
932 # Values: STRING
933 lockingopt = -w
934
935 # Option: iptables
936 # Notes.: Actual command to be executed, including common to all calls options
937 # Values: STRING
938 iptables = /usr/local/bin/iptables-exim <lockingopt>
939
940
941 [Init?family=inet6]
942
943 # Option: blocktype (ipv6)
944 # Note: This is what the action does with rules. This can be any jump target
945 # as per the iptables man page (section 8). Common values are DROP
946 # REJECT, REJECT --reject-with icmp6-port-unreachable
947 # Values: STRING
948 blocktype = REJECT --reject-with icmp6-port-unreachable
949
950 # Option: iptables (ipv6)
951 # Notes.: Actual command to be executed, including common to all calls options
952 # Values: STRING
953 iptables = /usr/local/bin/ip6tables-exim <lockingopt>
954 EOF
955
956 i /etc/fail2ban/jail.d/exim.local <<'EOF'
957 [exim]
958 enabled = true
959 port = 25,587
960 filter = exim
961 banaction = iptables-exim
962
963 # 209.51.188.13 = mail.fsf.org
964 # 2001:470:142::13 = mail.fsf.org
965 # 209.51.188.92 = eggs.gnu.org
966 # 2001:470:142:3::10 = eggs.gnu.org
967 # 72.14.176.105 2600:3c00:e000:280::2 = mail.iankelling.org
968 # 10.173.8.1 = non-nn net
969 ignoreip = 209.51.188.13 2001:470:142::13 209.51.188.92 2001:470:142:3::10 72.14.176.105 2600:3c00:e000:280::2 10.173.8.1
970 EOF
971 if $ir; then
972 m systemctl restart fail2ban
973 fi
974
975 # * common exim4 config
976
977
978 ## old, not using forward files anymore
979 rm -fv $uhome/.forward /root/.forward
980
981
982 # Make all system users be aliases. preventative
983 # prevents things like cron mail for user without alias
984 awk 'BEGIN { FS = ":" } ; $6 !~ /^\/home/ || $7 ~ /\/nologin$/ { print $1 }' /etc/passwd| while read -r user; do
985 if [[ ! $user ]]; then
986 continue
987 fi
988 if ! grep -q "^$user:" /etc/aliases; then
989 echo "$user: root" |m tee -a /etc/aliases
990 fi
991 done
992
993
994 awk 'BEGIN { FS = ":" } ; $6 ~ /^\/home/ && $7 !~ /\/nologin$/ { print $1 }' /etc/passwd| while read -r user; do
995 case $HOSTNAME in
996 $MAIL_HOST)
997 sed -i "/^user:/d" /etc/aliases
998 ;;
999 *)
1000 if ! grep -q "^$user:" /etc/aliases; then
1001 echo "$user: root" |m tee -a /etc/aliases
1002 fi
1003 ;;
1004 esac
1005 done
1006
1007 if ! grep -q "^ncsoft:" /etc/aliases; then
1008 echo "ncsoft: graceq2323@gmail.com" |m tee -a /etc/aliases
1009 fi
1010
1011
1012
1013 m gpasswd -a iank adm #needed for reading logs
1014
1015 ### make local bounces go to normal maildir
1016 # local mail that bounces goes to /Maildir or /root/Maildir
1017 dirs=(/m/md/bounces/{cur,tmp,new})
1018 m mkdir -p ${dirs[@]}
1019 m chown iank:iank /m /m/md
1020 m ln -sfT /m/md /m/iank
1021 m chmod 771 /m /m/md
1022 m chown -R $u:Debian-exim /m/md/bounces
1023 m chmod 775 ${dirs[@]}
1024 m usermod -a -G Debian-exim $u
1025 for d in /Maildir /root/Maildir; do
1026 if [[ ! -L $d ]]; then
1027 m rm -rf $d
1028 fi
1029 m ln -sf -T /m/md/bounces $d
1030 done
1031
1032 # dkim, client passwd file
1033 files=(/p/c/machine_specific/$HOSTNAME/filesystem/etc/exim4/*)
1034 f=/p/c/filesystem/etc/exim4/passwd.client
1035 if [[ -e $f ]]; then
1036 files+=($f)
1037 fi
1038 if (( ${#files[@]} )); then
1039 m rsync -ahhi --chown=root:Debian-exim --chmod=0640 \
1040 ${files[@]} /etc/exim4
1041 fi
1042
1043 # By default, only 10 days of logs are kept. increase that.
1044 # And dont compress, I look back at logs too often and
1045 # dont need the annoyance of decompressing them all the time.
1046 m sed -ri '/^\s*compress\s*$/d;s/^(\s*rotate\s).*/\11000/' /etc/logrotate.d/exim4-base
1047 files=(/var/log/exim4/*.gz)
1048 if (( ${#files[@]} )); then
1049 gunzip ${files[@]}
1050 fi
1051
1052 ## disabled. not using .forward files, but this is still interesting
1053 ## for reference.
1054 # ## https://blog.dhampir.no/content/make-exim4-on-debian-respect-forward-and-etcaliases-when-using-a-smarthost
1055 # # i only need .forwards, so just doing that one.
1056 # cd /etc/exim4/conf.d/router
1057 # b=userforward_higher_priority
1058 # # replace the router name so it is unique
1059 # sed -r s/^\\S+:/$b:/ 600_exim4-config_userforward >175_$b
1060 rm -fv /etc/exim4/conf.d/router/175_userforward_higher_priority
1061
1062 # todo, consider 'separate' in etc/exim4.conf, could it help on busy systems?
1063
1064 # alerts is basically the postmaster address
1065 m sed -i --follow-symlinks -f - /etc/aliases <<EOF
1066 \$a root: alerts@iankelling.org
1067 /^root:/d
1068 EOF
1069
1070 cat >/etc/exim4/conf.d/rewrite/34_iank_rewriting <<'EOF'
1071 ncsoft@zroe.org graceq2323@gmail.com hE
1072 EOF
1073
1074 # old name
1075 rm -fv /etc/exim4/conf.d/retry/37_retry
1076
1077 cat >/etc/exim4/conf.d/retry/17_retry <<'EOF'
1078 # Retry fast for my own domains
1079 iankelling.org * F,1d,4m;F,14d,1h
1080 amnimal.ninja * F,1d,4m;F,14d,1h
1081 expertpathologyreview.com * F,1d,4m;F,14d,1h
1082 je.b8.nz * F,1d,4m;F,14d,1h
1083 zroe.org * F,1d,4m;F,14d,1h
1084 eximbackup.b8.nz * F,1d,4m;F,14d,1h
1085
1086 # The spec says the target domain will be used for temporary host errors,
1087 # but i've found that isn't correct, the hostname is required
1088 # at least sometimes.
1089 nn.b8.nz * F,1d,4m;F,14d,1h
1090 defaultnn.b8.nz * F,1d,4m;F,14d,1h
1091 mx.iankelling.org * F,1d,4m;F,14d,1h
1092 bk.b8.nz * F,1d,4m;F,14d,1h
1093 eggs.gnu.org * F,1d,4m;F,14d,1h
1094 fencepost.gnu.org * F,1d,4m;F,14d,1h
1095
1096 # afaik our retry doesnt need this, but just using everything
1097 mx.amnimal.ninja * F,1d,4m;F,14d,1h
1098 mx.expertpathologyreview.com * F,1d,4m;F,14d,1h
1099
1100
1101 mail.fsf.org * F,1d,15m;F,14d,1h
1102 EOF
1103
1104
1105 rm -vf /etc/exim4/conf.d/main/000_localmacros # old filename
1106
1107 # separate file so without quoted EOF for convenience
1108 cat >/etc/exim4/conf.d/main/000_local2 <<EOF
1109 # normally empty, I set this so I can set the envelope address
1110 # when doing mail redelivery to invoke filters. Also allows
1111 # me exiqgrep and stuff.
1112 MAIN_TRUSTED_GROUPS = $u
1113 EOF
1114
1115 cat >/etc/exim4/conf.d/main/000_local <<'EOF'
1116 MAIN_TLS_ENABLE = true
1117
1118 # require tls connections for all smarthosts
1119 REMOTE_SMTP_SMARTHOST_HOSTS_REQUIRE_TLS = *
1120
1121 # debian exim config added this in 2016 or so?
1122 # it's part of the smtp spec, to limit lines to 998 chars
1123 # but a fair amount of legit mail does not adhere to it. I don't think
1124 # this should be default, like it says in
1125 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=828801
1126 # todo: the bug for introducing this was about headers, but
1127 # the fix maybe is for all lines? one says gmail rejects, the
1128 # other says gmail does not reject. figure out and open a new bug.
1129 IGNORE_SMTP_LINE_LENGTH_LIMIT = true
1130
1131 # more verbose logs
1132 MAIN_LOG_SELECTOR = +all
1133
1134 # Based on spec, seems like a good idea to be nice.
1135 smtp_return_error_details = true
1136
1137 # default is 10. when exim has been down for a bit, fsf mailserver
1138 # will do a big send in one connection, then exim decides to put
1139 # the messages in the queue instead of delivering them, to avoid
1140 # spawning too many delivery processes. This is the same as the
1141 # fsfs value. And the corresponding one for how many messages
1142 # to send out in 1 connection remote_max_parallel = 256
1143 smtp_accept_queue_per_connection = 500
1144
1145
1146 DKIM_CANON = relaxed
1147 DKIM_SELECTOR = li
1148
1149 # from comments in
1150 # https://debian-administration.org/article/718/DKIM-signing_outgoing_mail_with_exim4
1151 # and its best for this to align https://tools.ietf.org/html/rfc7489#page-8
1152 # There could be some circumstance when the
1153 # from: isnt our domain, but the envelope sender is
1154 # and so still want to sign, but I cant think of any case.
1155 DKIM_DOMAIN = ${lc:${domain:$rh_from:}}
1156 # The file is based on the outgoing domain-name in the from-header.
1157 # sign if key exists
1158 DKIM_PRIVATE_KEY = ${if exists{/etc/exim4/${dkim_domain}-private.pem} {/etc/exim4/${dkim_domain}-private.pem}}
1159
1160 # most of the ones that gmail seems to use.
1161 # Exim has horrible default of signing unincluded
1162 # list- headers since they got mentioned in an
1163 # rfc, but this messes up mailing lists, like gnu/debian which want to
1164 # keep your dkim signature intact but add list- headers.
1165 DKIM_SIGN_HEADERS = mime-version:in-reply-to:references:from:date:subject:to
1166
1167 domainlist local_hostnames = ! je.b8.nz : ! bk.b8.nz : *.b8.nz : b8.nz
1168
1169 hostlist iank_trusted = <; \\
1170 # veth0
1171 10.173.8.1 ; \\
1172 # li li_ip6
1173 72.14.176.105 ; 2600:3c00::f03c:91ff:fe6d:baf8 ; \\
1174 # li_vpn_net li_vpn_net_ip6s
1175 10.8.0.0/24; 2600:3c00:e000:280::/64 ; 2600:3c00:e002:3800::/56 ; \\
1176 # bk bk_ip6
1177 85.119.83.50 ; 2001:ba8:1f1:f0c9::2 ; \\
1178 # je je_ipv6
1179 85.119.82.128 ; 2001:ba8:1f1:f09d::2 ; \\
1180 # fsf_mit_net fsf_mit_net_ip6 fsf_net fsf_net_ip6 fsf_office_net
1181 18.4.89.0/24 ; 2603:3005:71a:2e00::/64 ; 209.51.188.0/24 ; 2001:470:142::/48 ; 74.94.156.208/28
1182
1183
1184 # this is the default delay_warning_condition, plus matching on local_domains.
1185 # If I have some problem with my local system that causes delayed delivery,
1186 # I dont want to send warnings out to non-local domains.
1187 delay_warning_condition = ${if or {\
1188 { !eq{$h_list-id:$h_list-post:$h_list-subscribe:}{} }\
1189 { match{$h_precedence:}{(?i)bulk|list|junk} }\
1190 { match{$h_auto-submitted:}{(?i)auto-generated|auto-replied} }\
1191 { match_domain{$domain}{+local_domains} }\
1192 } {no}{yes}}
1193
1194
1195 EOF
1196
1197 rm -fv /etc/exim4/rcpt_local_acl # old path
1198
1199 i /etc/exim4/conf.d/local_deny_exceptions_acl <<'EOF'
1200 # This acl already exists in rcpt, this just makes it more widespread.
1201 # See the comment there for its rationale. The reason it needs to be
1202 # more widespread is that I've turned on sender verification, but cron
1203 # emails can fail sender verification since I may be in a network that
1204 # doesn't have my local dns.
1205 accept
1206 authenticated = *
1207
1208 # i setup a local programs smtp to mail.iankelling.org, this
1209 # skips sender verification for it.
1210 accept
1211 hosts = 10.173.8.1
1212 EOF
1213
1214 rm -fv /etc/exim4/data_local_acl # old path
1215 i /etc/exim4/conf.d/data_local_acl <<'EOF'
1216 # Except for the "condition =", this was
1217 # a comment in the check_data acl. The comment about this not
1218 # being suitable has been changed in newer exim versions. The only thing
1219 # related I found was to
1220 # add the condition =, cuz spamassassin has problems with big
1221 # messages and spammers don't bother with big messages,
1222 # but I've increased the size from 10k
1223 # suggested in official docs, and 100k in the wiki example because
1224 # those docs are rather old and I see a 110k spam message
1225 # pretty quickly looking through my spam folder.
1226
1227 warn
1228 !hosts = +iank_trusted
1229 remove_header = X-Spam_score: X-Spam_score_int : X-Spam_bar : X-Spam_report
1230
1231 warn
1232 !hosts = +iank_trusted
1233 condition = ${if < {$message_size}{5000K}}
1234 spam = Debian-exim:true
1235 add_header = X-Spam_score_int: $spam_score_int
1236 add_header = X-Spam_score: $spam_score
1237 add_header = X-Spam_bar: $spam_bar
1238 add_header = X-Spam_report: $spam_report
1239 add_header = X-Spam_action: $spam_action
1240
1241 warn
1242 condition = ${if def:malware_name}
1243 remove_header = Subject:
1244 add_header = Subject: [Clamav warning: $malware_name] $h_subject
1245 log_message = heuristic malware warning: $malware_name
1246
1247 #accept
1248 # spf = pass:fail:softfail:none:neutral:permerror:temperror
1249 # dmarc_status = reject:quarantine
1250 # add_header = Reply-to: dmarctest@iankelling.org
1251
1252 EOF
1253
1254 i /etc/exim4/conf.d/router/900_exim4-config_local_user <<'EOF'
1255 ### router/900_exim4-config_local_user
1256 #################################
1257
1258 # This router matches local user mailboxes. If the router fails, the error
1259 # message is "Unknown user".
1260 local_user:
1261 debug_print = "R: local_user for $local_part@$domain"
1262 driver = accept
1263 domains = +local_domains
1264 # ian: default file except where mentioned.
1265 # ian: commented this. I get all local parts. for bk, an rcpt
1266 # check handles checking with dovecot, and the only router
1267 # after this is root.
1268 # local_parts = ! root
1269 transport = LOCAL_DELIVERY
1270 cannot_route_message = Unknown user
1271 # ian: added for + addressing.
1272 local_part_suffix = +*
1273 local_part_suffix_optional
1274 EOF
1275 i /etc/exim4/conf.d/transport/30_exim4-config_dovecot_lmtp <<'EOF'
1276 dovecot_lmtp:
1277 driver = lmtp
1278 socket = /var/run/dovecot/lmtp
1279 #maximum number of deliveries per batch, default 1
1280 batch_max = 200
1281 envelope_to_add
1282 EOF
1283
1284 i /etc/exim4/conf.d/transport/30_remote_smtp_vpn <<'EOF'
1285 # same as debians 30_exim4-config_remote_smtp, but
1286 # with interface added at the end.
1287
1288 remote_smtp_vpn:
1289 debug_print = "T: remote_smtp_vpn for $local_part@$domain"
1290 driver = smtp
1291 .ifndef IGNORE_SMTP_LINE_LENGTH_LIMIT
1292 message_size_limit = ${if > {$max_received_linelength}{998} {1}{0}}
1293 .endif
1294 .ifdef REMOTE_SMTP_HOSTS_AVOID_TLS
1295 hosts_avoid_tls = REMOTE_SMTP_HOSTS_AVOID_TLS
1296 .endif
1297 .ifdef REMOTE_SMTP_HEADERS_REWRITE
1298 headers_rewrite = REMOTE_SMTP_HEADERS_REWRITE
1299 .endif
1300 .ifdef REMOTE_SMTP_RETURN_PATH
1301 return_path = REMOTE_SMTP_RETURN_PATH
1302 .endif
1303 .ifdef REMOTE_SMTP_HELO_DATA
1304 helo_data=REMOTE_SMTP_HELO_DATA
1305 .endif
1306 .ifdef DKIM_DOMAIN
1307 dkim_domain = DKIM_DOMAIN
1308 .endif
1309 .ifdef DKIM_SELECTOR
1310 dkim_selector = DKIM_SELECTOR
1311 .endif
1312 .ifdef DKIM_PRIVATE_KEY
1313 dkim_private_key = DKIM_PRIVATE_KEY
1314 .endif
1315 .ifdef DKIM_CANON
1316 dkim_canon = DKIM_CANON
1317 .endif
1318 .ifdef DKIM_STRICT
1319 dkim_strict = DKIM_STRICT
1320 .endif
1321 .ifdef DKIM_SIGN_HEADERS
1322 dkim_sign_headers = DKIM_SIGN_HEADERS
1323 .endif
1324 .ifdef TLS_DH_MIN_BITS
1325 tls_dh_min_bits = TLS_DH_MIN_BITS
1326 .endif
1327 .ifdef REMOTE_SMTP_TLS_CERTIFICATE
1328 tls_certificate = REMOTE_SMTP_TLS_CERTIFICATE
1329 .endif
1330 .ifdef REMOTE_SMTP_PRIVATEKEY
1331 tls_privatekey = REMOTE_SMTP_PRIVATEKEY
1332 .endif
1333 .ifdef REMOTE_SMTP_HOSTS_REQUIRE_TLS
1334 hosts_require_tls = REMOTE_SMTP_HOSTS_REQUIRE_TLS
1335 .endif
1336 .ifdef REMOTE_SMTP_TRANSPORTS_HEADERS_REMOVE
1337 headers_remove = REMOTE_SMTP_TRANSPORTS_HEADERS_REMOVE
1338 .endif
1339 interface = <; 10.8.0.4 ; 2600:3c00:e002:3800::4
1340 EOF
1341
1342 i /etc/exim4/conf.d/transport/30_smarthost_dkim <<'EOF'
1343 # ian: this is remote_smtp_smarthost plus the dkim parts from remote_smtp
1344
1345 smarthost_dkim:
1346 debug_print = "T: remote_smtp_smarthost for $local_part@$domain"
1347 driver = smtp
1348 multi_domain
1349 .ifndef IGNORE_SMTP_LINE_LENGTH_LIMIT
1350 message_size_limit = ${if > {$max_received_linelength}{998} {1}{0}}
1351 .endif
1352 hosts_try_auth = <; ${if exists{CONFDIR/passwd.client} \
1353 {\
1354 ${lookup{$host}nwildlsearch{CONFDIR/passwd.client}{$host_address}}\
1355 }\
1356 {} \
1357 }
1358 .ifdef REMOTE_SMTP_SMARTHOST_HOSTS_AVOID_TLS
1359 hosts_avoid_tls = REMOTE_SMTP_SMARTHOST_HOSTS_AVOID_TLS
1360 .endif
1361 .ifdef REMOTE_SMTP_SMARTHOST_HOSTS_REQUIRE_TLS
1362 hosts_require_tls = REMOTE_SMTP_SMARTHOST_HOSTS_REQUIRE_TLS
1363 .endif
1364 .ifdef REMOTE_SMTP_SMARTHOST_TLS_VERIFY_CERTIFICATES
1365 tls_verify_certificates = REMOTE_SMTP_SMARTHOST_TLS_VERIFY_CERTIFICATES
1366 .endif
1367 .ifdef REMOTE_SMTP_SMARTHOST_TLS_VERIFY_HOSTS
1368 tls_verify_hosts = REMOTE_SMTP_SMARTHOST_TLS_VERIFY_HOST
1369 .endif
1370 .ifdef REMOTE_SMTP_HEADERS_REWRITE
1371 headers_rewrite = REMOTE_SMTP_HEADERS_REWRITE
1372 .endif
1373 .ifdef REMOTE_SMTP_RETURN_PATH
1374 return_path = REMOTE_SMTP_RETURN_PATH
1375 .endif
1376 .ifdef REMOTE_SMTP_HELO_DATA
1377 helo_data=REMOTE_SMTP_HELO_DATA
1378 .endif
1379 .ifdef TLS_DH_MIN_BITS
1380 tls_dh_min_bits = TLS_DH_MIN_BITS
1381 .endif
1382 .ifdef REMOTE_SMTP_SMARTHOST_TLS_CERTIFICATE
1383 tls_certificate = REMOTE_SMTP_SMARTHOST_TLS_CERTIFICATE
1384 .endif
1385 .ifdef REMOTE_SMTP_SMARTHOST_PRIVATEKEY
1386 tls_privatekey = REMOTE_SMTP_SMARTHOST_PRIVATEKEY
1387 .endif
1388 .ifdef REMOTE_SMTP_TRANSPORTS_HEADERS_REMOVE
1389 headers_remove = REMOTE_SMTP_TRANSPORTS_HEADERS_REMOVE
1390 .endif
1391 .ifdef DKIM_DOMAIN
1392 dkim_domain = DKIM_DOMAIN
1393 .endif
1394 .ifdef DKIM_SELECTOR
1395 dkim_selector = DKIM_SELECTOR
1396 .endif
1397 .ifdef DKIM_PRIVATE_KEY
1398 dkim_private_key = DKIM_PRIVATE_KEY
1399 .endif
1400 .ifdef DKIM_CANON
1401 dkim_canon = DKIM_CANON
1402 .endif
1403 .ifdef DKIM_STRICT
1404 dkim_strict = DKIM_STRICT
1405 .endif
1406 .ifdef DKIM_SIGN_HEADERS
1407 dkim_sign_headers = DKIM_SIGN_HEADERS
1408 .endif
1409 EOF
1410
1411
1412 cat >/etc/exim4/update-exim4.conf.conf <<'EOF'
1413 # default stuff, i havent checked if its needed
1414 dc_minimaldns='false'
1415 dc_relay_nets=''
1416 CFILEMODE='644'
1417 dc_use_split_config='true'
1418 dc_mailname_in_oh='true'
1419 EOF
1420
1421
1422 # * radicale
1423 if mailhost; then
1424 if ! mountpoint /o; then
1425 echo "error /o is not a mountpoint" >&2
1426 exit 1
1427 fi
1428
1429 # davx/davdroid setup instructions at the bottom
1430
1431 # main docs:
1432 # http://radicale.org/user_documentation/
1433 # https://davdroid.bitfire.at/configuration/
1434
1435 # note on debugging: if radicale can't bind to the address,
1436 # in the log it just says "Starting Radicale". If you run
1437 # it in the foreground, it will give more info. Background
1438 # plus debug does not help.
1439 # sudo -u radicale radicale -D -f
1440
1441 # created password file with:
1442 # htpasswd -c /p/c/machine_specific/li/filesystem/etc/caldav-htpasswd
1443 # chmod 640 /p/c/machine_specific/li/filesystem/etc/caldav-htpasswd
1444 # # setup chgrp www-data in ./conflink
1445
1446 pi-nostart radicale
1447
1448 i /etc/systemd/system/radicale.service.d/override.conf <<EOF
1449 [Unit]
1450
1451 After=network.target network-online.target mailnn.service $vpnser
1452
1453 Wants=$vpnser
1454 JoinsNamespaceOf=mailnn.service
1455 StartLimitIntervalSec=0
1456
1457 [Service]
1458 PrivateNetwork=true
1459 BindPaths=$bindpaths
1460 Restart=always
1461 # time to sleep before restarting a service
1462 RestartSec=20
1463
1464 [Install]
1465 # for openvpn
1466 RequiredBy=$vpnser
1467 EOF
1468
1469
1470 # use persistent uid/gid
1471 IFS=:; read -r _ _ uid _ < <(getent passwd radicale ); unset IFS
1472 IFS=:; read -r _ _ gid _ < <(getent group radicale ); unset IFS
1473 if [[ $uid != 609 ]]; then
1474 m systemctl stop radicale ||:
1475 m usermod -u 609 radicale
1476 m groupmod -g 609 radicale
1477 m usermod -g 609 radicale
1478 fi
1479 m find /o/radicale -xdev -exec chown -h 609 {} +
1480 m find /o/radicale -xdev -exec chgrp -h 609 {} +
1481
1482
1483 # I moved /var/lib/radicale after it's initialization.
1484 # I did a sudo -u radicale git init in the collections subfolder
1485 # after it gets created, per the git docs.
1486 m /a/exe/lnf -T /o/radicale /var/lib/radicale
1487
1488 # from https://www.williamjbowman.com/blog/2015/07/24/setting-up-webdav-caldav-and-carddav-servers/
1489
1490 # more config is for li in distro-end
1491
1492 # coment in this file says this is needed for it to run on startup
1493 sed -ri 's/^\s*#+\s*(ENABLE_RADICALE\s*=\s*yes\s*)/\1/' /etc/default/radicale
1494
1495 # comments say default is 0.0.0.0:5232
1496 m setini hosts 10.8.0.4:5232 server
1497 # https://radicale.org/2.1.html
1498 m setini type http_x_remote_user auth
1499
1500
1501 # disable power management feature, set to 240 min sync interval,
1502 # so it shouldn't be bad.
1503
1504 # davdroid from f-druid.
1505 # login with url and user name
1506 # url https://cal.iankelling.org/ian
1507 # username ian
1508 # pass, see password manager for radicale
1509 #
1510 # add account dialog:
1511 #
1512 # set account name as ian@iankelling.org, per help text below the
1513 # field.
1514 #
1515 # switch to groups are per-contact categories,
1516 # per https://davdroid.bitfire.at/configuration/radicale/
1517 #
1518 #
1519 # After setting up account, I added one address book, named
1520 # ianaddr. calender was already created, named ian. checked boxes under
1521 # both. synced.
1522 #
1523 # To restore from old phone to new phone, I wiped all data out, then copied over the newly created files. I think
1524 #
1525 # ignorable background info:
1526 #
1527 # opentasks uses the calendar file.
1528 #
1529 # The address book I created got a uuid as a name for the file. Note
1530 # the .props file says if it's a calendar or addressbook.
1531 #
1532 # When debugging, tailed /var/log/radicale/radicale.log and apache log,
1533 # both show the requests happening. Without creating the address book,
1534 # after creating a contact, a sync would delete it.
1535 #
1536 # Address books correspond to .props files in the radicale dir.
1537 #
1538 # Some background is here,
1539 # https://davdroid.bitfire.at/faq/entry/cant-manage-groups-on-device/
1540 # which shows separate vcard option is from rfc 6350, the other is 2426,
1541 # radicale page says it implements the former not the latter,
1542 # which conflicts with the documentation of which to select, but whatever.
1543 # http://radicale.org/technical_choices/
1544 # https://davdroid.bitfire.at/faq/entry/cant-manage-groups-on-device/
1545 #
1546 # Note, url above says only cayanogenmod 13+ and omnirom can manage groups.
1547
1548 # Note, radicale had built-in git support to track changes, but they
1549 # removed it in 2.0.
1550
1551 fi
1552
1553 # * dovecot
1554
1555 # ** $MAIL_HOST|bk|je)
1556 case $HOSTNAME in
1557 $MAIL_HOST|bk|je)
1558 # based on a little google and package search, just the dovecot
1559 # packages we need instead of dovecot-common.
1560 #
1561 # dovecot-lmtpd is for exim to deliver to dovecot instead of maildir
1562 # directly. The reason to do this is to use dovecot\'s sieve, which
1563 # can generally do more than exims filters (a few things less) and
1564 # sieve has the benefit of being supported in postfix and
1565 # proprietary/weird environments, so there is more examples on the
1566 # internet.
1567 pi-nostart dovecot-core dovecot-imapd dovecot-sieve dovecot-lmtpd dovecot-sqlite sqlite3
1568
1569 for f in /p/c{/machine_specific/$HOSTNAME,}/filesystem/etc/dovecot/users; do
1570 if [[ -e $f ]]; then
1571 m rsync -ahhi --chown=root:dovecot --chmod=0640 $f /etc/dovecot/
1572 break
1573 fi
1574 done
1575 for f in /p/c/subdir_files/sieve/*sieve /a/bin/ds/subdir_files/sieve/*sieve; do
1576 m sudo -u $u /a/exe/lnf -v -T $f $uhome/sieve/${f##*/}
1577 done
1578
1579 # https://wiki.dovecot.org/SSL/DovecotConfiguration
1580 i /etc/dovecot/dhparam <<'EOF'
1581 -----BEGIN DH PARAMETERS-----
1582 MIIBCAKCAQEAoleil6SBxGqQKk7j0y2vV3Oklv6XupZKn7PkPv485QuFeFagifeS
1583 A+Jz6Wquqk5zhGyCu63Hp4wzGs4TyQqoLjkaWL6Ra/Bw3g3ofPEzMGEsV1Qdqde4
1584 jorwiwtr2i9E6TXQp0noT/7VFeHulIkayTeW8JulINdMHs+oLylv16McGCIrxbkM
1585 8D1PuO0TP/CNDs2QbRvJ1RjY3CeGpxMhrSHVgBCUMwnA2cvz3bYjI7UMYMMDPNrE
1586 PLrwsYzXGGCdJsO2vsmmqqgLsZiapYJlUNjfiyWLt7E2H6WzkNB3VIhIPfLqFDPK
1587 xioE3sYKdjOt+p6mlg3l8+OLtODEFPHDqwIBAg==
1588 -----END DH PARAMETERS-----
1589 EOF
1590 {
1591
1592 if [[ $HOSTNAME == "$MAIL_HOST" ]]; then
1593 cat <<'EOF'
1594 ssl_cert = </etc/exim4/fullchain.pem
1595 ssl_key = </etc/exim4/privkey.pem
1596 EOF
1597 else
1598 # We have a lets encrypt hooks that puts things here.
1599 # This is just for bk, which uses the vpn cert in exim
1600 # for sending mail, but the local hostname cert for
1601 # dovecot.
1602 cat <<'EOF'
1603 ssl_cert = </etc/exim4/exim.crt
1604 ssl_key = </etc/exim4/exim.key
1605 EOF
1606 fi
1607
1608 cat <<'EOF'
1609 # https://ssl-config.mozilla.org
1610 ssl = required
1611 # this is the same as the certbot list, in my cert cronjob, I check if that has changed upstream.
1612 ssl_cipher_list = ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
1613 ssl_protocols = TLSv1.2
1614 ssl_prefer_server_ciphers = no
1615
1616 protocol lmtp {
1617 #per https://wiki2.dovecot.org/Pigeonhole/Sieve/Configuration
1618 # default is just $mail_plugins
1619 mail_plugins = $mail_plugins sieve
1620 }
1621 EOF
1622 if dpkg --compare-versions $(dpkg-query -f='${Version}\n' --show dovecot-core) ge 1:2.3; then
1623 cat <<EOF
1624 ssl_dh = </etc/dovecot/dhparam
1625 EOF
1626 fi
1627 } >/etc/dovecot/local.conf
1628
1629 ;;&
1630
1631 # ** $MAIL_HOST)
1632 $MAIL_HOST)
1633 # If we changed 90-sieve.conf and removed the active part of the
1634 # sieve option, we wouldn\'t need this, but I\'d rather not modify a
1635 # default config if not needed. This won\'t work as a symlink in /a/c
1636 # unfortunately.
1637 m sudo -u $u /a/exe/lnf -T sieve/main.sieve $uhome/.dovecot.sieve
1638
1639 if [[ ! -e $uhome/sieve/personal.sieve ]]; then
1640 m touch $uhome/sieve/personal{,end}{,test}.sieve
1641 fi
1642
1643 rm -fv /etc/dovecot/conf.d/20-lmtp.conf # file from prev version
1644 cat >>/etc/dovecot/local.conf <<EOF
1645 # simple password file based login
1646 !include conf.d/auth-passwdfile.conf.ext
1647
1648 # ian: %u is used for alerts user vs iank
1649 mail_location = maildir:/m/%u:LAYOUT=fs:INBOX=/m/%u/INBOX
1650 mail_uid = $u
1651 mail_gid = $u
1652
1653 protocol lmtp {
1654 # For a normal setup with exim, we need something like this, which
1655 # removes the domain part
1656 # auth_username_format = %Ln
1657 #
1658 # or else # Exim says something like
1659 # "LMTP error after RCPT ... 550 ... User doesn't exist someuser@somedomain"
1660 # Dovecot verbose log says something like
1661 # "auth-worker(9048): passwd(someuser@somedomain): unknown user"
1662 # reference: http://wiki.dovecot.org/LMTP/Exim
1663 #
1664 # However, I use this to direct all mail to the same inbox.
1665 # A normal way to do this, which I did at first is to have
1666 # a router in exim almost at the end, eg 950,
1667 #local_catchall:
1668 # debug_print = "R: catchall for \$local_part@\$domain"
1669 # driver = redirect
1670 # domains = +local_domains
1671 # data = $u
1672 # based on
1673 # http://blog.alteholz.eu/2015/04/exim4-and-catchall-email-address/
1674 # with superflous options removed.
1675 # However, this causes the envelope to be rewritten,
1676 # which makes filtering into mailboxes a little less robust or more complicated,
1677 # so I've done it this way instead. it also requires
1678 # modifying the local router in exim.
1679 auth_username_format = $u
1680 }
1681 EOF
1682 ;;&
1683 # ** bk|je)
1684 bk|je)
1685 chown -R mail.mail /m/md
1686
1687 f=/etc/dovecot/conf.d/10-auth.conf
1688 if [[ -e $f ]]; then
1689 mv $f $f-iank-disabled
1690 fi
1691
1692 cat >>/etc/dovecot/local.conf <<EOF
1693 !include /etc/dovecot/local.conf.ext
1694
1695 # for debugging info, uncomment these.
1696 # logs go to syslog and to /var/log/mail.log
1697 #auth_verbose=yes
1698 #mail_debug=yes
1699
1700
1701 protocol lmtp {
1702 # This downcases the localpart. default is case sensitive.
1703 # case sensitive local part will miss out on valid email when some person or system
1704 # mistakenly capitalizes things.
1705 auth_username_format = %Lu
1706 }
1707
1708 # make 147 only listen on localhost, plan to use for nextcloud.
1709 # copied from mailinabox
1710 service imap-login {
1711 inet_listener imap {
1712 address = 127.0.0.1
1713 }
1714 }
1715 # https://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_dovecot_authenticator.html
1716 service auth {
1717 unix_listener auth-client {
1718 user = Debian-exim
1719 group = Debian-exim
1720 }
1721 }
1722
1723
1724 plugin {
1725 sieve_before = /etc/dovecot/sieve-spam.sieve
1726 # from mailinabox
1727 sieve = /m/sieve/%d/%n.sieve
1728 sieve_dir = /m/sieve/%d/%n
1729 }
1730
1731
1732 # all taken from mailinabox.
1733 mail_location = maildir:/m/md/%d/%n
1734 # meh, ok.
1735 mail_privileged_group = mail
1736 # By default Dovecot allows users to log in only with UID numbers 500 and above. mail is 8
1737 first_valid_uid = 1
1738
1739 # todo: test these changes in the universal config
1740 # mailboxes taken from mailinabox but removed
1741 # settings duplicate to defaults
1742 namespace inbox {
1743 mailbox INBOX {
1744 auto = subscribe
1745 }
1746 mailbox Spam {
1747 special_use = \Junk
1748 auto = subscribe
1749 }
1750 mailbox Drafts {
1751 auto = subscribe
1752 }
1753 mailbox Sent {
1754 auto = subscribe
1755 }
1756 mailbox Trash {
1757 auto = subscribe
1758 }
1759 mailbox Archive {
1760 special_use = \Archive
1761 auto = subscribe
1762 }
1763 }
1764 auth_mechanisms = plain login
1765 EOF
1766
1767 i /etc/dovecot/sieve-spam.sieve <<'EOF'
1768 require ["regex", "fileinto", "imap4flags"];
1769
1770 if allof (header :regex "X-Spam-Status" "^Yes") {
1771 fileinto "Spam";
1772 stop;
1773 }
1774 EOF
1775
1776 i /etc/dovecot/local.conf.ext <<'EOF'
1777 passdb {
1778 driver = sql
1779 args = /etc/dovecot/dovecot-sql.conf.ext
1780 }
1781 userdb {
1782 driver = sql
1783 args = /etc/dovecot/dovecot-sql.conf.ext
1784 }
1785
1786 EOF
1787
1788 i /etc/dovecot/dovecot-sql.conf.ext <<'EOF'
1789 # from mailinabox
1790 driver = sqlite
1791 # for je and bk, populated the testignore users for the relevant domains
1792 connect = /m/rc/users.sqlite
1793 default_pass_scheme = SHA512-CRYPT
1794 password_query = SELECT email as user, password FROM users WHERE email='%u';
1795 user_query = SELECT email AS user, "mail" as uid, "mail" as gid, "/m/md/%d/%n" as home FROM users WHERE email='%u';
1796 iterate_query = SELECT email AS user FROM users;
1797 EOF
1798 m chmod 0600 /etc/dovecot/dovecot-sql.conf.ext # per Dovecot instructions
1799
1800 # db needs to be in a www-data writable directory
1801 db=/m/rc/users.sqlite
1802 if [[ ! -s $db ]]; then
1803 m mkdir -p /m/rc
1804 m sqlite3 $db <<'EOF'
1805 CREATE TABLE users (
1806 id INTEGER PRIMARY KEY AUTOINCREMENT,
1807 email TEXT NOT NULL UNIQUE,
1808 password TEXT NOT NULL,
1809 extra,
1810 privileges TEXT NOT NULL DEFAULT '');
1811 EOF
1812 fi
1813 # users.sqlite is saved into /p/c/machine_specific, so update it there!.
1814 #
1815 # example of adding a user:
1816 # hash: doveadm pw -s SHA512-CRYPT -p passhere
1817 # sqlite3 /m/rc/users.sqlite <<'EOF'
1818 #insert into users (email, password) values ('testignore@bk.b8.nz', 'hash');
1819 #EOF
1820 # update users set password = 'hash' where email = 'testignore@bk.b8.nz';
1821
1822 # this should be at the end since it requires a valid dovecot config
1823 m sievec /etc/dovecot/sieve-spam.sieve
1824 ;;&
1825 # ** bk)
1826 bk)
1827 # roundcube uses this
1828 mkdir -p /m/sieve
1829 chown mail.mail /m/sieve
1830 m pi dovecot-managesieved
1831 ;;
1832 esac
1833
1834 # * thunderbird autoconfig setup
1835
1836 bkdomains=(expertpathologyreview.com amnimal.ninja)
1837 if [[ $HOSTNAME == bk ]]; then
1838 for domain in ${bkdomains[@]}; do
1839 m /a/exe/web-conf apache2 autoconfig.$domain
1840 dir=/var/www/autoconfig.$domain/html/mail
1841 m mkdir -p $dir
1842 # taken from mailinabox
1843 i $dir/config-v1.1.xml <<EOF
1844 <?xml version="1.0" encoding="UTF-8"?>
1845 <clientConfig version="1.1">
1846 <emailProvider id="$domain">
1847 <domain>$domain</domain>
1848
1849 <displayName>$domain Mail</displayName>
1850 <displayShortName>$domain</displayShortName>
1851
1852 <incomingServer type="imap">
1853 <hostname>mail2.iankelling.org</hostname>
1854 <port>993</port>
1855 <socketType>SSL</socketType>
1856 <username>%EMAILADDRESS%</username>
1857 <authentication>password-cleartext</authentication>
1858 </incomingServer>
1859
1860 <outgoingServer type="smtp">
1861 <hostname>mail2.iankelling.org</hostname>
1862 <port>587</port>
1863 <socketType>STARTTLS</socketType>
1864 <username>%EMAILADDRESS%</username>
1865 <authentication>password-cleartext</authentication>
1866 <addThisServer>true</addThisServer>
1867 <useGlobalPreferredServer>false</useGlobalPreferredServer>
1868 </outgoingServer>
1869
1870 <documentation url="https://$domain/">
1871 <descr lang="en">$domain website.</descr>
1872 </documentation>
1873 </emailProvider>
1874
1875 <webMail>
1876 <loginPage url="https://$domain/roundcube" />
1877 <loginPageInfo url="https://$domain/roundcube" >
1878 <username>%EMAILADDRESS%</username>
1879 <usernameField id="rcmloginuser" name="_user" />
1880 <passwordField id="rcmloginpwd" name="_pass" />
1881 <loginButton id="rcmloginsubmit" />
1882 </loginPageInfo>
1883 </webMail>
1884 <clientConfigUpdate url="https://autoconfig.$domain/mail/config-v1.1.xml" />
1885 </clientConfig>
1886 EOF
1887 done
1888 fi
1889
1890 # * roundcube setup
1891
1892 if [[ $HOSTNAME == bk ]]; then
1893
1894 # zip according to /installer
1895 # which requires adding a line to /usr/local/lib/roundcubemail/config/config.inc.php
1896 # $config['enable_installer'] = true;
1897 pi roundcube roundcube-sqlite3 php-zip apache2 php-fpm
1898
1899 ### begin composer install
1900 # https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md
1901 # cd $(mktemp -d)
1902 # sum="$(wget -q -O - https://composer.github.io/installer.sig)"
1903 # m php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
1904 # if [[ $sum != $(php -r "echo hash_file('sha384', 'composer-setup.php');") ]]; then
1905 # echo 'ERROR: Invalid composer installer checksum' >&2
1906 # rm -fv composer-setup.php
1907 # exit 1
1908 # fi
1909 # m php composer-setup.php --quiet
1910 # rm -fv composer-setup.php
1911 # m mv composer.phar /usr/local/bin
1912
1913 # the above method gets composer2, carddav plugin at least doesnt work with that
1914 # yet, it was just released 10-24-2020.
1915 m cd /usr/local/bin
1916 m wget -nv -N https://getcomposer.org/composer-1.phar
1917 chmod +x composer-1.phar
1918 ### end composer install
1919
1920 rcdirs=(/usr/local/lib/rcexpertpath /usr/local/lib/rcninja)
1921 ncdirs=(/var/www/ncninja)
1922 ncdirs=(/var/www/ncexpertpath /var/www/ncninja)
1923 # point debian cronjob to our local install, preventing daily cron error
1924
1925 # debian's cronjob will fail, remove both paths it uses just to be sure
1926 rm -fv /usr/share/roundcube/bin/cleandb.sh /etc/cron.d/roundcube-core
1927
1928 #### begin dl roundcube
1929 # note, im r2e subbed to https://github.com/roundcube/roundcubemail/releases.atom
1930 v=1.4.13; f=roundcubemail-$v-complete.tar.gz
1931 cd /root
1932 if [[ -e $f ]]; then
1933 timestamp=$(stat -c %Y $f)
1934 else
1935 timestamp=0
1936 fi
1937 m wget -nv -N https://github.com/roundcube/roundcubemail/releases/download/$v/$f
1938 new_timestamp=$(stat -c %Y $f)
1939 for rcdir in ${rcdirs[@]}; do
1940 if [[ $timestamp != "$new_timestamp" || ! -e "$rcdir/config/secret" ]]; then
1941 m tar -C /usr/local/lib --no-same-owner -zxf $f
1942 m rm -rf $rcdir
1943 m mv /usr/local/lib/roundcubemail-$v $rcdir
1944 fi
1945 done
1946 #### end dl roundcube
1947
1948 for ((i=0; i < ${#bkdomains[@]}; i++)); do
1949 domain=${bkdomains[i]}
1950 rcdir=${rcdirs[i]}
1951 rcbase=${rcdir##*/}
1952 ncdir=${ncdirs[i]}
1953
1954 # copied from debians cronjob
1955 i /etc/cron.d/$rcbase <<EOF
1956 # Roundcube database cleaning: finally removes all records that are
1957 # marked as deleted.
1958 0 5 * * * www-data $rcdir/bin/cleandb.sh >/dev/null
1959 EOF
1960
1961 m /a/exe/web-conf - apache2 $domain <<EOF
1962 Alias /roundcube $rcdir
1963 ### begin roundcube settings
1964 # taken from /etc/apache2/conf-available/roundcube.conf version 1.4.8+dfsg.1-1~bpo10+1
1965 <Directory $rcdir/>
1966 Options +FollowSymLinks
1967 # This is needed to parse $rcdir/.htaccess.
1968 AllowOverride All
1969 Require all granted
1970 </Directory>
1971 # Protecting basic directories:
1972 <Directory $rcdir/config>
1973 Options -FollowSymLinks
1974 AllowOverride None
1975 </Directory>
1976 ### end roundcube settings
1977
1978
1979 ### begin nextcloud settings
1980 Alias /nextcloud "$ncdir/"
1981 <Directory $ncdir/>
1982 Require all granted
1983 AllowOverride All
1984 Options FollowSymLinks MultiViews
1985
1986 <IfModule mod_dav.c>
1987 Dav off
1988 </IfModule>
1989
1990 </Directory>
1991
1992 # based on install checker, links to
1993 # https://docs.nextcloud.com/server/19/admin_manual/issues/general_troubleshooting.html#service-discovery
1994 # their example was a bit wrong, I figured it out by adding
1995 # LogLevel warn rewrite:trace5
1996 # then watching the apache logs
1997
1998 RewriteEngine on
1999 RewriteRule ^/\.well-known/host-meta /nextcloud/public.php?service=host-meta [QSA,L]
2000 RewriteRule ^/\.well-known/host-meta\.json /nextcloud/public.php?service=host-meta-json [QSA,L]
2001 RewriteRule ^/\.well-known/webfinger /nextcloud/public.php?service=webfinger [QSA,L]
2002 RewriteRule ^/\.well-known/carddav /nextcloud/remote.php/dav/ [R=301,L]
2003 RewriteRule ^/\.well-known/caldav /nextcloud/remote.php/dav/ [R=301,L]
2004 ### end nextcloud settings
2005 EOF
2006 if [[ ! -e $rcdir/config/secret ]]; then
2007 base64 </dev/urandom | head -c24 >$rcdir/config/secret || [[ $? == 141 || ${PIPESTATUS[0]} == 32 ]]
2008 fi
2009 secret=$(cat $rcdir/config/secret)
2010
2011 rclogdir=/var/log/$rcbase
2012 rctmpdir=/var/tmp/$rcbase
2013 rcdb=/m/rc/$rcbase.sqlite
2014 # config from mailinabox
2015 i $rcdir/config/config.inc.php <<EOF
2016 <?php
2017 \$config = array();
2018 # debian creates this for us
2019 \$config['log_dir'] = '$rclogdir/';
2020 # debian also creates a temp dir, but it is under its install dir,
2021 # seems better to have our own.
2022 \$config['temp_dir'] = '$rctmpdir/';
2023 \$config['db_dsnw'] = 'sqlite:///$rcdb?mode=0640';
2024 \$config['default_host'] = 'ssl://localhost';
2025 \$config['default_port'] = 993;
2026 \$config['imap_conn_options'] = array(
2027 'ssl' => array(
2028 'verify_peer' => false,
2029 'verify_peer_name' => false,
2030 ),
2031 );
2032 \$config['imap_timeout'] = 15;
2033 \$config['smtp_server'] = 'tls://127.0.0.1';
2034 \$config['smtp_conn_options'] = array(
2035 'ssl' => array(
2036 'verify_peer' => false,
2037 'verify_peer_name' => false,
2038 ),
2039 );
2040 \$config['product_name'] = 'webmail';
2041 \$config['des_key'] = '$secret';
2042 \$config['plugins'] = array('archive', 'zipdownload', 'password', 'managesieve', 'jqueryui', 'carddav', 'html5_notifier');
2043 \$config['skin'] = 'elastic';
2044 \$config['login_autocomplete'] = 2;
2045 \$config['password_charset'] = 'UTF-8';
2046 \$config['junk_mbox'] = 'Spam';
2047 # disable builtin addressbook
2048 \$config['address_book_type'] = '';
2049 ?>
2050 EOF
2051
2052 m mkdir -p $rclogdir
2053 m chmod 750 $rclogdir
2054 m chown www-data:adm $rclogdir
2055 # note: subscribed to updates:
2056 # r2e add rcmcarddav https://github.com/blind-coder/rcmcarddav/commits/master.atom ian@iankelling.org
2057 # r2e add roundcube https://github.com/roundcube/roundcubemail/releases.atom ian@iankelling.org
2058 m mkdir -p $rctmpdir /m/rc
2059 m chown -R www-data.www-data $rctmpdir /m/rc
2060 m chmod 750 $rctmpdir
2061 # Ensure the log file monitored by fail2ban exists, or else fail2ban can't start.
2062 # todo: check for other mailinabox things
2063 m sudo -u www-data touch $rclogdir/errors.log
2064
2065 #### begin carddav install
2066 # This is the official roundcube carddav repo.
2067 # Install doc suggests downloading with composer, but that
2068 # didnt work, it said some ldap package for roundcube was missing,
2069 # but I dont want to download some extra ldap thing.
2070 # https://github.com/blind-coder/rcmcarddav/blob/master/doc/INSTALL.md
2071 verf=$rcdir/plugins/carddav/myversion
2072 upgrade=false
2073 install=false
2074 v=4.0.0
2075 if [[ -e $verf ]]; then
2076 if [[ $(cat $verf) != "$v" ]]; then
2077 install=true
2078 upgrade=true
2079 fi
2080 else
2081 install=true
2082 fi
2083 if $install; then
2084 m rm -rf $rcdir/plugins/carddav
2085 tmpd=$(mktemp -d)
2086 m wget -nv -O $tmpd/t.tgz https://github.com/blind-coder/rcmcarddav/releases/download/v$v/carddav-v$v.tgz
2087 cd $rcdir/plugins
2088 tar xzf $tmpd/t.tgz
2089 rm -rf $tmpd
2090 m chown -R www-data:www-data $rcdir/plugins/carddav
2091 m cd $rcdir/plugins/carddav
2092 if $upgrade; then
2093 m sudo -u www-data composer-1.phar update --no-dev
2094 else
2095 m sudo -u www-data composer-1.phar install --no-dev
2096 fi
2097 m chown -R root:root $rcdir/plugins/carddav
2098 echo $v >$verf
2099 fi
2100
2101 # So, strangely, this worked in initial testing, but then
2102 # on first run it wouldn't show the existing contacts until
2103 # I went into the carddav settings and did "force immediate sync",
2104 # which seemed to fix things. Note, some of these settings
2105 # get initalized per/addressbook in the db, then need changing
2106 # there or through the settings menu.
2107
2108 # About categories, see https://www.davx5.com/tested-with/nextcloud
2109 # https://github.com/blind-coder/rcmcarddav/blob/master/doc/GROUPS.md
2110 i $rcdir/plugins/carddav/config.inc.php <<EOF;
2111 <?php
2112 \$prefs['_GLOBAL']['hide_preferences'] = false;
2113 \$prefs['davserver'] = array(
2114 # name in the UI is kind of dumb. This is just something short that seems to fit ok.
2115 'name' => 'Main',
2116 'username' => '%u', // login username
2117 'password' => '%p', // login password
2118 'url' => 'https://$domain/nextcloud/remote.php/dav/addressbooks/users/%u/contacts',
2119 'active' => true,
2120 'readonly' => false,
2121 'refresh_time' => '00:10:00',
2122 'fixed' => array('username','password'),
2123 'use_categories' => false,
2124 'hide' => false,
2125 );
2126 ?>
2127 EOF
2128 #### end carddav install
2129
2130 cd $rcdir/plugins
2131 if [[ ! -d html5_notifier ]]; then
2132 m git clone https://github.com/stremlau/html5_notifier
2133 fi
2134 cd $rcdir/plugins/html5_notifier
2135 m git pull --rebase
2136
2137 # todo: try out roundcube plugins: thunderbird labels
2138
2139 # Password changing plugin settings
2140 cat $rcdir/plugins/password/config.inc.php.dist - >$rcdir/plugins/password/config.inc.php <<'EOF'
2141 # following are from mailinabox
2142 $config['password_minimum_length'] = 8;
2143 $config['password_db_dsn'] = 'sqlite:////m/rc/users.sqlite';
2144 $config['password_query'] = 'UPDATE users SET password=%D WHERE email=%u';
2145 $config['password_dovecotpw'] = '/usr/bin/doveadm pw';
2146 $config['password_dovecotpw_method'] = 'SHA512-CRYPT';
2147 $config['password_dovecotpw_with_method'] = true;
2148 EOF
2149 # so PHP can use doveadm, for the password changing plugin
2150 m usermod -a -G dovecot www-data
2151 m usermod -a -G mail $u
2152
2153 # so php can update passwords
2154 m chown www-data:dovecot /m/rc/users.sqlite
2155 m chmod 664 /m/rc/users.sqlite
2156
2157 # Run Roundcube database migration script (database is created if it does not exist)
2158 m $rcdir/bin/updatedb.sh --dir $rcdir/SQL --package roundcube
2159 m chown www-data:www-data $rcdb
2160 m chmod 664 $rcdb
2161 done # end loop over domains and rcdirs
2162
2163 ### begin php setup for rc ###
2164 # Enable PHP modules.
2165 m phpenmod -v php mcrypt imap
2166 # dpkg says this is required
2167 m a2enmod proxy_fcgi setenvif
2168 fpm=$(dpkg-query -s php-fpm | sed -nr 's/^Depends:.* (php[^ ]*-fpm)( .*|$)/\1/p') # eg: php7.4-fpm
2169 phpver=$(dpkg-query -s php-fpm | sed -nr 's/^Depends:.* php([^ ]*)-fpm( .*|$)/\1/p')
2170 m a2enconf $fpm
2171 # 3 useless guides on php fpm fcgi debian 10 later, i figure out from reading
2172 # /etc/apache2/conf-enabled/php7.3-fpm.conf
2173 m a2dismod php$phpver
2174 # according to /install, we should set date.timezone,
2175 # but that is dumb, the system already has the right zone in
2176 # $rclogdir/errors.log
2177 # todo: consider other settings in
2178 # /a/opt/mailinabox/setup/nextcloud.sh
2179 i /etc/php/$phpver/cli/conf.d/30-local.ini <<'EOF'
2180 apc.enable_cli = 1
2181 EOF
2182
2183 i /etc/php/$phpver/fpm/conf.d/30-local.ini <<'EOF'
2184 date.timezone = "America/New_York"
2185 # for nextcloud
2186 upload_max_filesize = 2000M
2187 post_max_size = 2000M
2188 # install checker, nextcloud/settings/admin/overview
2189 memory_limit = 512M
2190 EOF
2191 m systemctl restart $fpm
2192 # dunno if reload/restart is needed
2193 m systemctl reload apache2
2194 # note bk backups are defined in crontab outside this file
2195 ### end php setup for rc ###
2196
2197 fi # end roundcube setup
2198
2199 # * nextcloud setup
2200
2201 if [[ $HOSTNAME == bk ]]; then
2202 # from install checker, nextcloud/settings/admin/overview and
2203 # https://docs.nextcloud.com/server/19/admin_manual/installation/source_installation.html
2204 # curl from the web installer requirement, but i switched to cli
2205 # it recommends php-file info, but that is part of php7.3-common, already got installed
2206 # with roundcube.
2207 m pi php-curl php-bz2 php-gmp php-bcmath php-imagick php-apcu
2208
2209 # https://docs.nextcloud.com/server/19/admin_manual/installation/source_installation.html
2210 cat >/etc/php/$phpver/fpm/pool.d/localwww.conf <<'EOF'
2211 [www]
2212 clear_env = no
2213 EOF
2214
2215 for ((i=0; i < ${#bkdomains[@]}; i++)); do
2216 domain=${bkdomains[i]}
2217 ncdir=${ncdirs[i]}
2218 ncbase=${ncdir##*/}
2219 m cd /var/www
2220 if [[ ! -e $ncdir/index.php ]]; then
2221 # if we wanted to only install a specific version, use something like
2222 # file=latest-22.zip
2223 file=latest.zip
2224 m wget -nv -N https://download.nextcloud.com/server/releases/$file
2225 m rm -rf nextcloud
2226 m unzip -q $file
2227 m rm -f $file
2228 m chown -R www-data.www-data nextcloud
2229 m mv nextcloud $ncdir
2230 m cd $ncdir
2231 m sudo -u www-data php occ maintenance:install --database sqlite --admin-user iank --admin-pass $nextcloud_admin_pass
2232 fi
2233 # note, strange this happend where updater did not increment the version var,
2234 # mine was stuck on 20. I manually updated it.
2235 m cd $ncdir/config
2236 if [[ ! -e config.php-orig ]]; then
2237 m cp -a config.php config.php-orig
2238 fi
2239 cat config.php-orig - >tmp.php <<EOF
2240 # https://docs.nextcloud.com/server/19/admin_manual/configuration_server/email_configuration.html
2241 \$CONFIG["mail_smtpmode"] = "sendmail";
2242 \$CONFIG["mail_smtphost"] = "127.0.0.1";
2243 \$CONFIG["mail_smtpport"] = 25;
2244 \$CONFIG["mail_smtptimeout"] = 10;
2245 \$CONFIG["mail_smtpsecure"] = "";
2246 \$CONFIG["mail_smtpauth"] = false;
2247 \$CONFIG["mail_smtpauthtype"] = "LOGIN";
2248 \$CONFIG["mail_smtpname"] = "";
2249 \$CONFIG["mail_smtppassword"] = "";
2250 \$CONFIG["mail_domain"] = "$domain";
2251
2252 # https://github.com/nextcloud/user_external#readme
2253 # plus mailinabox example
2254 #\$CONFIG['user_backends'] = array(array('class' => 'OC_User_IMAP','arguments' => array('127.0.0.1', 143, null),),);
2255
2256
2257 # based on installer check
2258 # https://docs.nextcloud.com/server/19/admin_manual/configuration_server/caching_configuration.html
2259 \$CONFIG['memcache.local'] = '\OC\Memcache\APCu';
2260
2261 \$CONFIG['overwrite.cli.url'] = 'https://$domain/nextcloud';
2262 \$CONFIG['htaccess.RewriteBase'] = '/nextcloud';
2263 \$CONFIG['trusted_domains'] = array (
2264 0 => '$domain',
2265 );
2266 #\$CONFIG[''] = '';
2267 fwrite(STDOUT, "<?php\n\\\$CONFIG = ");
2268 var_export(\$CONFIG);
2269 fwrite(STDOUT, ";\n");
2270 EOF
2271 m php tmp.php >config.php
2272 m rm -f tmp.php
2273 m sudo -u www-data php $ncdir/occ maintenance:update:htaccess
2274 list=$(sudo -u www-data php $ncdir/occ --output=json_pretty app:list)
2275 # user_external not compaible with nc 23
2276 for app in contacts calendar; do
2277 if [[ $(printf "%s\n" "$list"| jq ".enabled.$app") == null ]]; then
2278 m sudo -u www-data php $ncdir/occ app:install $app
2279 fi
2280 done
2281 i /etc/systemd/system/$ncbase.service <<EOF
2282 [Unit]
2283 Description=ncup $ncbase
2284 After=multi-user.target
2285
2286 [Service]
2287 Type=oneshot
2288 ExecStart=/usr/local/bin/ncup $ncbase
2289 User=www-data
2290 IOSchedulingClass=idle
2291 CPUSchedulingPolicy=idle
2292 EOF
2293 i /etc/systemd/system/$ncbase.timer <<EOF
2294 [Unit]
2295 Description=ncup $ncbase timer
2296
2297 [Timer]
2298 OnCalendar=Daily
2299
2300 [Install]
2301 WantedBy=timers.target
2302 EOF
2303 systemctl enable --now $ncbase.timer
2304 i /usr/local/bin/ncup <<'EOFOUTER'
2305 #!/bin/bash
2306 if ! test "$BASH_VERSION"; then echo "error: shell is not bash" >&2; exit 1; fi
2307 shopt -s inherit_errexit 2>/dev/null ||: # ignore fail in bash < 4.4
2308 set -eE -o pipefail
2309 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" exit status: $?, PIPESTATUS: ${PIPESTATUS[*]}" >&2' ERR
2310
2311 ncbase=$1
2312 if ! php /var/www/$ncbase/updater/updater.phar -n; then
2313 echo failed nextcloud update for $ncbase >&2
2314 /sbin/exim -t <<EOF
2315 To: alerts@iankelling.org
2316 From: root@$(hostname -f)
2317 Subject: failed nextcloud update for $ncbase
2318
2319 For logs, run: jr -u $ncbase
2320 EOF
2321 fi
2322 EOFOUTER
2323 chmod +x /usr/local/bin/ncup
2324
2325 mkdir -p /var/www/cron-errors
2326 chown www-data.www-data /var/www/cron-errors
2327 i /etc/cron.d/$ncbase <<EOF
2328 PATH=/usr/sbin:/sbin:/usr/bin:/bin:/usr/local/bin
2329 SHELL=/bin/bash
2330 # https://docs.nextcloud.com/server/20/admin_manual/configuration_server/background_jobs_configuration.html
2331 */5 * * * * www-data php -f $ncdir/cron.php --define apc.enable_cli=1 |& log-once nccron
2332 EOF
2333
2334 done
2335 fi
2336
2337
2338 # * exim host conditional config
2339
2340 # ** exim certs
2341
2342 all_dirs=(/p/c/filesystem)
2343 for x in /p/c/machine_specific/*.hosts /a/bin/ds/machine_specific/*.hosts; do
2344 if grep -qxF $HOSTNAME $x; then all_dirs+=( ${x%.hosts} ); fi
2345 done
2346 files=()
2347 for d in ${all_dirs[@]}; do
2348 f=$d/etc/exim4/passwd
2349 if [[ -e $f ]]; then
2350 files+=($f)
2351 fi
2352 tmp=($d/etc/exim4/*.pem)
2353 if (( ${#tmp[@]} )); then
2354 files+=(${tmp[@]})
2355 fi
2356 done
2357
2358 if (( ${#files[@]} )); then
2359 sudo rsync -ahhi --chown=root:Debian-exim --chmod=0640 ${files[@]} /etc/exim4/
2360 fi
2361
2362
2363 # ** exim: auth
2364
2365 case $HOSTNAME in
2366 bk|je)
2367 # avoid accepting mail for invalid users
2368 # https://wiki.dovecot.org/LMTP/Exim
2369 cat >>/etc/exim4/conf.d/rcpt_local_acl <<'EOF'
2370 deny
2371 message = invalid recipient
2372 domains = +local_domains
2373 !verify = recipient/callout=no_cache
2374 EOF
2375 i /etc/exim4/conf.d/auth/29_exim4-config_auth <<'EOF'
2376 dovecot_plain:
2377 driver = dovecot
2378 public_name = PLAIN
2379 server_socket = /var/run/dovecot/auth-client
2380 server_set_id = $auth1
2381 EOF
2382 ;;
2383 esac
2384 if $bhost_t; then
2385 i /etc/exim4/conf.d/auth/29_exim4-config_auth <<'EOF'
2386 # from 30_exim4-config_examples
2387 plain_server:
2388 driver = plaintext
2389 public_name = PLAIN
2390 server_condition = "${if crypteq{$auth3}{${extract{1}{:}{${lookup{$auth2}lsearch{CONFDIR/passwd}{$value}{*:*}}}}}{1}{0}}"
2391 server_set_id = $auth2
2392 server_prompts = :
2393 .ifndef AUTH_SERVER_ALLOW_NOTLS_PASSWORDS
2394 server_advertise_condition = ${if eq{$tls_in_cipher}{}{}{*}}
2395 .endif
2396 EOF
2397 fi
2398
2399 # ** exim: main daemon use non-default config file
2400 case $HOSTNAME in
2401 bk|$MAIL_HOST)
2402 # to see the default comments in /etc/default/exim4:
2403 # s update-exim4defaults --force --init
2404 # which will overwrite any existing file
2405 i /etc/default/exim4 <<'EOF'
2406 QUEUERUNNER='combined'
2407 QUEUEINTERVAL='30m'
2408 COMMONOPTIONS='-C /etc/exim4/my.conf'
2409 UPEX4OPTS='-o /etc/exim4/my.conf'
2410 # i use epanic-clean for alerting if there are bad paniclog entries
2411 E4BCD_WATCH_PANICLOG='no'
2412 EOF
2413 chown Debian-exim:Debian-exim /usr/sbin/exim4
2414 # needs guid set in order to become Debian-exim
2415 chmod g+s,u+s /usr/sbin/exim4
2416 i /etc/exim4/trusted_configs <<'EOF'
2417 /etc/exim4/my.conf
2418 EOF
2419 ;;
2420 *)
2421 # default file
2422 i /etc/default/exim4 <<'EOF'
2423 QUEUERUNNER='combined'
2424 QUEUEINTERVAL='30m'
2425 EOF
2426 ;;
2427 esac
2428
2429 # ** exim non-root
2430
2431 case $HOSTNAME in
2432 bk|je|li)
2433 # no reason to expect it to ever be there.
2434 rm -fv /etc/systemd/system/exim4.service.d/nonroot.conf
2435 ;;
2436 *)
2437 dirs=()
2438 for d in /a /d /m /media /mnt /nocow /o /p /q; do
2439 if [[ -d $d ]]; then
2440 dirs+=($d)
2441 fi
2442 done
2443 i /etc/systemd/system/exim4.service.d/nonroot.conf <<EOF
2444 [Service]
2445 # see 56.2 Root privilege in exim spec
2446 AmbientCapabilities=CAP_NET_BIND_SERVICE
2447 # https://www.redhat.com/sysadmin/mastering-systemd
2448 # things that seem good and reasonabl.e
2449 PrivateTmp=yes
2450 ProtectHome=yes
2451 # note, in t10 systemd, if one of these is an sshfs mountpoint,
2452 # this whole setting doesnt work. tried it with a newer systemd 250 though
2453 # an nspawn, and it worked there.
2454 InaccessiblePaths=${dirs[@]}
2455 NoNewPrivileges=yes
2456 ProtectSystem=yes
2457
2458 # when we get newer systemd
2459 #ProtectDevices=yes
2460 EOF
2461 i /etc/exim4/conf.d/main/000_local-noroot <<'EOF'
2462 # see 56.2 Root privilege in exim spec
2463 deliver_drop_privilege = true
2464 EOF
2465 files=(
2466 300_exim4-config_real_local
2467 600_exim4-config_userforward
2468 700_exim4-config_procmail
2469 800_exim4-config_maildrop
2470 mmm_mail4root
2471 )
2472 for f in ${files[@]}; do
2473 echo "# iank: removed due to running nonroot"|i /etc/exim4/conf.d/router/$f
2474 done
2475 ;;
2476 esac
2477
2478 case $HOSTNAME in
2479
2480 # ** $MAIL_HOST|bk|je)
2481 $MAIL_HOST|bk|je)
2482
2483 echo|i /etc/exim4/conf.d/router/870_backup_local
2484
2485 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2486 # note: some things we don't set that are here by default because they are unused.
2487 dc_local_interfaces=''
2488 dc_eximconfig_configtype='internet'
2489 dc_localdelivery='dovecot_lmtp'
2490 EOF
2491 cat >>/etc/exim4/conf.d/main/000_local <<EOF
2492 # recommended if dns is expected to work
2493 CHECK_RCPT_VERIFY_SENDER = true
2494 # default config comment says: If you enable this, you might reject legitimate mail,
2495 # but eggs has had this a long time, so that seems unlikely.
2496 CHECK_RCPT_SPF = true
2497 CHECK_RCPT_REVERSE_DNS = true
2498 CHECK_MAIL_HELO_ISSUED = true
2499
2500 # enable 587 in addition to the default 25, so that
2501 # i can send mail where port 25 is firewalled by isp
2502 daemon_smtp_ports = 25 : 587
2503 # default of 25, can get stuck when catching up on mail
2504 smtp_accept_max = 400
2505 smtp_accept_reserve = 100
2506 smtp_reserve_hosts = +iank_trusted
2507
2508 # options exim has to avoid having to alter the default config files
2509 CHECK_RCPT_LOCAL_ACL_FILE = /etc/exim4/conf.d/rcpt_local_acl
2510 CHECK_DATA_LOCAL_ACL_FILE = /etc/exim4/conf.d/data_local_acl
2511 LOCAL_DENY_EXCEPTIONS_LOCAL_ACL_FILE = /etc/exim4/conf.d/local_deny_exceptions_acl
2512 # testing dmarc
2513 #dmarc_tld_file = /etc/public_suffix_list.dat
2514 EOF
2515 ;;&
2516
2517 # ** $MAIL_HOST|bk)
2518 $MAIL_HOST|bk)
2519
2520 cat >>/etc/exim4/conf.d/main/000_local <<EOF
2521 # je.b8.nz will run out of memory with freshclam
2522 av_scanner = clamd:/var/run/clamav/clamd.ctl
2523 EOF
2524
2525 cat >> /etc/exim4/conf.d/data_local_acl <<'EOF'
2526 deny
2527 malware = */defer_ok
2528 !condition = ${if match {$malware_name}{\N^Heuristic\N}}
2529 message = This message was detected as possible malware ($malware_name).
2530 EOF
2531
2532 cat >/etc/exim4/conf.d/main/000_local-nn <<EOF
2533 # MAIN_HARDCODE_PRIMARY_HOSTNAME might mess up the
2534 # smarthost config type, not sure.
2535 # failing message on mail-tester.com:
2536 # We check if there is a server (A Record) behind your hostname kd.
2537 # You may want to publish a DNS record (A type) for the hostname kd or use a different hostname in your mail software
2538 # https://serverfault.com/questions/46545/how-do-i-change-exim4s-primary-hostname-on-a-debian-box
2539 # and this one seemed appropriate from grepping config.
2540 # I originally set this to li.iankelling.org, but then ended up with errors when li tried to send
2541 # mail to kd, so this should basically be a name that no host has as their
2542 # canonical hostname since the actual host sits behind a nat and changes.
2543 MAIN_HARDCODE_PRIMARY_HOSTNAME = mail.iankelling.org
2544 # I used this to avoid sender verification, didnt work but it still
2545 # makes sense based on the spec.
2546 hosts_treat_as_local = defaultnn.b8.nz
2547
2548 # Outside nn, we get the default cert location from a debian macro,
2549 # and the cert file is put in place by a certbot hook.
2550 MAIN_TLS_CERTIFICATE = /etc/exim4/fullchain.pem
2551 MAIN_TLS_PRIVATEKEY = /etc/exim4/privkey.pem
2552 EOF
2553
2554 i /etc/exim4/conf.d/router/190_exim4-config_fsfsmarthost <<'EOF'
2555 gnusmarthost:
2556 debug_print = "R: smarthost for $local_part@$domain"
2557 driver = manualroute
2558 domains = ! +local_domains
2559 # send most mail through eggs, helps fsfs sender reputation.
2560 # uncomment and optionally move to 188 file to send through my own servers again
2561 senders = *@gnu.org
2562 transport = smarthost_dkim
2563 route_list = * fencepost.gnu.org::587 byname
2564 host_find_failed = ignore
2565 same_domain_copy_routing = yes
2566 no_more
2567 EOF
2568
2569 /a/exe/cedit defaultnn /etc/hosts <<'EOF' || [[ $? == 1 ]]
2570 10.173.8.1 defaultnn.b8.nz
2571 EOF
2572 ;;&
2573 # ** $MAIL_HOST)
2574 $MAIL_HOST)
2575
2576 i /etc/exim4/conf.d/router/195_dnslookup_vpn <<'EOF'
2577 # copied from /etc/exim4/conf.d/router/200_exim4-config_primary, but
2578 # use vpn transport. lower priority so it overrides the default route.
2579 # Use this in case our vpn fails, we dont send anything without it.
2580 .ifdef DCconfig_internet
2581 dnslookup_vpn:
2582 debug_print = "R: dnslookup for $local_part@$domain"
2583 driver = dnslookup
2584 domains = ! +local_domains
2585 transport = remote_smtp_vpn
2586 same_domain_copy_routing = yes
2587 ignore_target_hosts = <; 0.0.0.0 ; 127.0.0.0/8 ; 192.168.0.0/16 ; 172.16.0.0/12 ; 10.0.0.0/8 ; 169.254.0.0/16 ; 255.255.255.255 ; ::/128 ; ::1/128 ; fc00::/7 ; fe80::/10 ; 100::/64
2588 no_more
2589 .endif
2590 EOF
2591
2592
2593 # note on backups: I used to do an automatic sshfs and restricted
2594 # permissions to a specific directory on the remote server, /bu/mnt,
2595 # which required using a dedicated user, but realized smtp will be
2596 # more reliable and less fuss. If I ever need that again, see the
2597 # history of this file, and bum in brc2.
2598
2599 i /etc/exim4/conf.d/router/890_backup_copy <<EOF
2600 ### router/900_exim4-config_local_user
2601 #################################
2602
2603 # todo, it would be nice to save sent email too,
2604 # but its not so important, they still exist in my head
2605
2606 backup_redir:
2607 driver = redirect
2608 domains = +local_domains
2609 # b is just an arbirary short string
2610 data = b@eximbackup.b8.nz
2611 # note, to test this, i could temporarily allow testignore.
2612 # alerts avoids potential mail loop. root is already
2613 # redirected earlier, so that is just being overly cautious.
2614 local_parts = ! root : ! testignore : ! alerts
2615 unseen = true
2616
2617 backup_copy:
2618 driver = manualroute
2619 domains = eximbackup.b8.nz
2620 transport = backup_remote
2621 ignore_target_hosts = ${HOSTNAME}wg.b8.nz
2622 # note changes here also require change in passwd.client
2623 route_list = * eximbackup.b8.nz
2624 same_domain_copy_routing = yes
2625 errors_to = alerts@iankelling.org
2626 no_more
2627 EOF
2628
2629
2630 i /etc/exim4/conf.d/transport/30_backup_remote <<'EOF'
2631 backup_remote:
2632 driver = smtp
2633 multi_domain
2634 .ifndef IGNORE_SMTP_LINE_LENGTH_LIMIT
2635 message_size_limit = ${if > {$max_received_linelength}{998} {1}{0}}
2636 .endif
2637 hosts_require_auth = *
2638 hosts_try_auth = *
2639 envelope_to_add
2640 # manual return path because we want it to be the envelope sender
2641 # we got not the one we are using in this smtp transport
2642 headers_add = "Return-path: $sender_address"
2643 .ifdef REMOTE_SMTP_SMARTHOST_HOSTS_AVOID_TLS
2644 hosts_avoid_tls = REMOTE_SMTP_SMARTHOST_HOSTS_AVOID_TLS
2645 .endif
2646 .ifdef REMOTE_SMTP_SMARTHOST_HOSTS_REQUIRE_TLS
2647 hosts_require_tls = REMOTE_SMTP_SMARTHOST_HOSTS_REQUIRE_TLS
2648 .endif
2649 .ifdef REMOTE_SMTP_SMARTHOST_TLS_VERIFY_CERTIFICATES
2650 tls_verify_certificates = REMOTE_SMTP_SMARTHOST_TLS_VERIFY_CERTIFICATES
2651 .endif
2652 .ifdef REMOTE_SMTP_SMARTHOST_TLS_VERIFY_HOSTS
2653 tls_verify_hosts = REMOTE_SMTP_SMARTHOST_TLS_VERIFY_HOST
2654 .endif
2655 .ifdef REMOTE_SMTP_HEADERS_REWRITE
2656 headers_rewrite = REMOTE_SMTP_HEADERS_REWRITE
2657 .endif
2658 .ifdef REMOTE_SMTP_HELO_DATA
2659 helo_data=REMOTE_SMTP_HELO_DATA
2660 .endif
2661 .ifdef TLS_DH_MIN_BITS
2662 tls_dh_min_bits = TLS_DH_MIN_BITS
2663 .endif
2664 .ifdef REMOTE_SMTP_SMARTHOST_TLS_CERTIFICATE
2665 tls_certificate = REMOTE_SMTP_SMARTHOST_TLS_CERTIFICATE
2666 .endif
2667 .ifdef REMOTE_SMTP_SMARTHOST_PRIVATEKEY
2668 tls_privatekey = REMOTE_SMTP_SMARTHOST_PRIVATEKEY
2669 .endif
2670 .ifdef REMOTE_SMTP_TRANSPORTS_HEADERS_REMOVE
2671 headers_remove = REMOTE_SMTP_TRANSPORTS_HEADERS_REMOVE
2672 .endif
2673 EOF
2674
2675
2676 # this avoids some error. i cant remember what. todo:
2677 # test it out and document why/if its needed.
2678 # i /etc/exim4/host_local_deny_exceptions <<'EOF'
2679 # mail.fsf.org
2680 # *.posteo.de
2681 # EOF
2682
2683 # cron email from smarthost hosts will automatically be to
2684 # USER@FQDN. I redirect that to alerts@, on the smarthosts, but in
2685 # case that doesn't work, we still want to accept that mail, but not
2686 # from any host except the smarthosts. local_hostnames and this rule
2687 # is for that purpose.
2688 i /etc/exim4/conf.d/rcpt_local_acl <<'EOF'
2689 deny
2690 !authenticated = *
2691 domains = +local_hostnames
2692 message = no relay
2693 EOF
2694 echo|i /etc/exim4/conf.d/router/880_universal_forward
2695
2696
2697 cat >>/etc/exim4/conf.d/main/000_local <<EOF
2698 MAILDIR_HOME_MAILDIR_LOCATION = /m/md/Sent
2699 EOF
2700
2701 # for iank@fsf.org, i have mail.fsf.org forward it to fsf@iankelling.org.
2702 # and also have mail.iankelling.org whitelisted as a relay domain.
2703 # I could avoid that if I changed this to submit to 587 with a
2704 # password like a standard mua.
2705 i /etc/exim4/conf.d/router/188_exim4-config_smarthost <<'EOF'
2706 # ian: save a copy of sent mail. i thought of other ways to
2707 # do this, for example, to only save sent mail that is not sent
2708 # from my mail client which saves a copy by default, but in the
2709 # end, it seems simplest to turn that off. We want to save
2710 # external mail sent by smarthosts.
2711 sentarchive:
2712 driver = redirect
2713 domains = ! +local_domains
2714 condition = ${if !bool{${lookup{$local_part@$domain}lsearch{/etc/exim4/ignore-sent}{true}}}}
2715 data = vojdedIdNejyebni@b8.nz
2716 unseen
2717
2718 # ian: copied from /etc/exim4/conf.d/router/200_exim4-config_primary, and added senders = and
2719 # replaced DCsmarthost with hostname
2720 fsfsmarthost:
2721 debug_print = "R: smarthost for $local_part@$domain"
2722 driver = manualroute
2723 domains = ! +local_domains
2724 senders = *@fsf.org
2725 transport = remote_smtp_smarthost
2726 route_list = * mail.fsf.org::587 byname
2727 host_find_failed = ignore
2728 same_domain_copy_routing = yes
2729 no_more
2730
2731 posteosmarthost:
2732 debug_print = "R: smarthost for $local_part@$domain"
2733 driver = manualroute
2734 domains = ! +local_domains
2735 senders = *@posteo.net
2736 transport = remote_smtp_smarthost
2737 route_list = * posteo.de::587 byname
2738 host_find_failed = ignore
2739 same_domain_copy_routing = yes
2740 no_more
2741 EOF
2742
2743 # Greping /etc/exim4, unqualified mails this would end up as
2744 # a return path, so it should go somewhere we will see.
2745 # The debconf output about mailname is as follows:
2746 # The 'mail name' is the domain name used to 'qualify' mail addresses without a domain
2747 # name.
2748 # This name will also be used by other programs. It should be the single, fully
2749 # qualified domain name (FQDN).
2750 # Thus, if a mail address on the local host is foo@example.org, the correct value for
2751 # this option would be example.org.
2752 # This name won\'t appear on From: lines of outgoing messages if rewriting is enabled.
2753 echo iankelling.org > /etc/mailname
2754
2755
2756 # mail.iankelling.org so local imap clients can connect with tls and
2757 # when they happen to not be local.
2758 # todo: this should be 10.8.0.4
2759
2760 /a/exe/cedit nn /etc/hosts <<'EOF' || [[ $? == 1 ]]
2761 # note: i put nn.b8.nz into bind for good measure
2762 10.173.8.2 nn.b8.nz mx.iankelling.org
2763 EOF
2764
2765 # note: systemd-resolved will consult /etc/hosts, dnsmasq wont. this assumes
2766 # weve configured this file in dnsmasq if we are using it.
2767 /a/exe/cedit mail /etc/dnsmasq-servers.conf <<'EOF' || [[ $? == 1 ]]
2768 server=/mx.iankelling.org/127.0.1.1
2769 EOF
2770 # I used to use debconf-set-selections + dpkg-reconfigure,
2771 # which then updates this file
2772 # but the process is slower than updating it directly and then I want to set other things in
2773 # update-exim4.conf.conf, so there's no point.
2774 # The file is documented in man update-exim4.conf,
2775 # except the man page is not perfect, read the bash script to be sure about things.
2776
2777 # The debconf questions output is additional documentation that is not
2778 # easily accessible, but super long, along with the initial default comment in this
2779 # file, so I've saved that into ./mail-notes.conf.
2780 #
2781 # # TODO: remove mx.iankelling.org once systems get updated mail-setup from jan 2022
2782 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2783 # man page: is used to build the local_domains list, together with "localhost"
2784 # this is duplicated in a later router.
2785 dc_other_hostnames='iankelling.org;zroe.org;r2e.iankelling.org;mx.iankelling.org;!je.b8.nz;!bk.b8.nz;*.b8.nz;b8.nz'
2786 EOF
2787
2788
2789 # dmarc. not used currently
2790 f=/etc/cron.daily/refresh-dmarc-tld-file
2791 cat >$f <<'EOF'
2792 #!/bin/bash
2793 cd /etc
2794 wget -q -N https://publicsuffix.org/list/public_suffix_list.dat
2795 EOF
2796 m chmod 755 $f
2797
2798 ;;
2799 # ** bk
2800 ## we use this host to monitor MAIL_HOST and host a mail server for someone
2801 bk)
2802
2803 echo|i /etc/exim4/conf.d/rcpt_local_acl
2804 echo|i /etc/exim4/conf.d/router/880_universal_forward
2805
2806 /a/exe/cedit nn /etc/hosts <<'EOF' || [[ $? == 1 ]]
2807 10.173.8.2 nn.b8.nz
2808 EOF
2809
2810 sed -r -f - /etc/init.d/exim4 <<'EOF' | i /etc/init.d/exim4in
2811 s,/etc/default/exim4,/etc/default/exim4in,g
2812 s,/run/exim4/exim.pid,/run/exim4/eximin.pid,g
2813 s,(^[ #]*Provides:).*,\1 exim4in,
2814 s,(^[ #]*NAME=).*,\1"exim4in",
2815 EOF
2816 chmod +x /etc/init.d/exim4in
2817 i /etc/systemd/system/exim4in.service.d/alwaysrestart.conf <<'EOF'
2818 [Unit]
2819 # needed to continually restart
2820 StartLimitIntervalSec=0
2821
2822 [Service]
2823 Restart=always
2824 # time to sleep before restarting a service
2825 RestartSec=20
2826 EOF
2827
2828 i /etc/default/exim4in <<'EOF'
2829 # defaults but no queue runner and alternate config dir
2830 QUEUERUNNER='no'
2831 COMMONOPTIONS='-oP /run/exim4/eximin.pid'
2832 UPEX4OPTS='-d /etc/myexim4'
2833 EOF
2834
2835 echo bk.b8.nz > /etc/mailname
2836 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2837 # man page: is used to build the local_domains list, together with "localhost"
2838 dc_other_hostnames='amnimal.ninja;expertpathologyreview.com;bk.b8.nz'
2839 EOF
2840
2841 ;;
2842 # ** je
2843 je)
2844 echo je.b8.nz > /etc/mailname
2845 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2846 dc_other_hostnames='je.b8.nz'
2847 EOF
2848 echo|i /etc/exim4/conf.d/router/188_exim4-config_smarthost
2849 echo|i /etc/exim4/conf.d/router/190_exim4-config_fsfsmarthost
2850 echo|i /etc/exim4/conf.d/rcpt_local_acl
2851 echo|i /etc/exim4/conf.d/router/880_universal_forward
2852 ;;
2853 # ** not MAIL_HOST|bk|je
2854 *)
2855 # this one should be removed for all non mail hosts, but
2856 # bk and je never become mail_host
2857 echo|i /etc/exim4/conf.d/router/195_dnslookup_vpn
2858
2859 echo|i /etc/exim4/conf.d/router/188_exim4-config_smarthost
2860 echo|i /etc/exim4/conf.d/router/190_exim4-config_fsfsmarthost
2861 echo|i /etc/exim4/conf.d/rcpt_local_acl
2862 echo|i /etc/exim4/conf.d/router/890_backup_copy
2863 echo|i /etc/exim4/conf.d/main/000_local-nn
2864
2865
2866 if $bhost_t; then
2867 cat >>/etc/exim4/conf.d/main/000_local <<EOF
2868 MAIN_TLS_CERTIFICATE = /etc/exim4/certs/$wghost/fullchain.pem
2869 MAIN_TLS_PRIVATEKEY = /etc/exim4/certs/$wghost/privkey.pem
2870 # so we can maintiain the originals of the backups.
2871 # we wouldnt want this if we were dealing with any other
2872 # local deliveries, but we sent all others to the smarthost
2873 # which then strips the headers.
2874 envelope_to_remove = false
2875 return_path_remove = false
2876 EOF
2877 fi
2878
2879 # catches things like cronjob email
2880 i /etc/exim4/conf.d/router/880_universal_forward <<'EOF'
2881 universal_forward:
2882 driver = redirect
2883 domains = +local_domains
2884 data = alerts@iankelling.org
2885 EOF
2886
2887
2888 for unit in ${nn_progs[@]}; do
2889 f=/etc/systemd/system/$unit.service.d/nn.conf
2890 rm -fv $f
2891 done
2892
2893 # dont i dont care if defaultnn section gets left, it wont
2894 # get used.
2895 echo | /a/exe/cedit nn /etc/hosts || [[ $? == 1 ]]
2896 echo | /a/exe/cedit mail /etc/dnsmasq-servers.conf || [[ $? == 1 ]]
2897
2898
2899 if $bhost_t; then
2900 install -d /bu
2901 install -d -g Debian-exim -o Debian-exim -m 771 /bu/md
2902 if [[ -e /bu/md/cur && $(stat -c %u /bu/md/cur) == 1000 ]]; then
2903 chown -R Debian-exim:Debian-exim /bu/md
2904 fi
2905 i /etc/exim4/conf.d/transport/30_backup_maildir <<EOF
2906 # modified debian maildir transport
2907 backup_maildir:
2908 driver = appendfile
2909 directory = /bu/md
2910 delivery_date_add
2911 # note, no return path or envelope added
2912 maildir_format
2913 directory_mode = 0700
2914 mode = 0644
2915 mode_fail_narrower = false
2916 EOF
2917
2918 i /etc/exim4/conf.d/router/870_backup_local <<'EOF'
2919 ### router/900_exim4-config_local_user
2920 #################################
2921
2922 backup_local:
2923 debug_print = "R: local_user for $local_part@$domain"
2924 driver = accept
2925 domains = eximbackup.b8.nz
2926 transport = backup_maildir
2927 EOF
2928
2929 # Bind to wghole to receive mailbackup.
2930 wgholeip=$(sed -rn 's/^ *Address *= *([^/]+).*/\1/p' /etc/wireguard/wghole.conf)
2931 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2932 dc_other_hostnames='eximbackup.b8.nz'
2933 dc_local_interfaces='127.0.0.1;::1;$wgholeip'
2934 EOF
2935
2936 # wghole & thus exim will fail to start without internet connectivity.
2937 i /etc/systemd/system/exim4.service.d/backup.conf <<'EOF'
2938 [Unit]
2939 StartLimitIntervalSec=0
2940
2941 [Service]
2942 Restart=always
2943 RestartSec=20
2944 EOF
2945
2946 else
2947 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2948 # Note: If theres like a temporary problem where mail gets sent to
2949 # one of these hosts, if exim isnt listening, it will be a temporary error
2950 # instead of a permanent 5xx.
2951 dc_local_interfaces='127.0.0.1;::1'
2952 EOF
2953 rm -fv /etc/systemd/system/exim4.service.d/backup.conf
2954 fi
2955 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2956 dc_eximconfig_configtype='smarthost'
2957 dc_smarthost='$smarthost'
2958 EOF
2959
2960 hostname -f |i /etc/mailname
2961 cat >>/etc/exim4/update-exim4.conf.conf <<EOF
2962 # The manpage incorrectly states this will do header rewriting, but
2963 # that only happens if we have dc_hide_mailname is set.
2964 dc_readhost='iankelling.org'
2965 # Only used in case of bounces.
2966 dc_localdelivery='maildir_home'
2967 EOF
2968 ;;
2969 esac
2970
2971
2972
2973
2974 # ** $MAILHOST|bk, things that belong at the end
2975 case $HOSTNAME in
2976 $MAIL_HOST|bk)
2977 # config for the non-nn exim
2978 m rsync -ra --delete /etc/exim4/ /etc/myexim4
2979 cat >>/etc/myexim4/conf.d/main/000_local-nn <<'EOF'
2980 # this makes it easier to see which exim is doing what
2981 log_file_path = /var/log/exim4/my%s
2982 EOF
2983
2984 cat >/etc/logrotate.d/myexim <<'EOF'
2985 /var/log/exim4/mymain /var/log/exim4/myreject {
2986 daily
2987 missingok
2988 rotate 1000
2989 delaycompress
2990 notifempty
2991 nocreate
2992 }
2993 /var/log/exim4/mypanic {
2994 size 10M
2995 missingok
2996 rotate 10
2997 compress
2998 delaycompress
2999 notifempty
3000 nocreate
3001 }
3002 EOF
3003
3004 # If we ever wanted to have a separate spool,
3005 # we could do it like this.
3006 # cat >>/etc/exim4/conf.d/main/000_local-nn <<'EOF'
3007 # spool_directory = /var/spool/myexim4
3008 # EOF
3009 cat >>/etc/myexim4/update-exim4.conf.conf <<'EOF'
3010 dc_eximconfig_configtype='smarthost'
3011 dc_smarthost='nn.b8.nz'
3012 EOF
3013 ;;&
3014 bk)
3015
3016 # config for the non-nn exim
3017 cat >/etc/myexim4/conf.d/main/000_local-nn <<'EOF'
3018 MAIN_HARDCODE_PRIMARY_HOSTNAME = mail2.iankelling.org
3019 EOF
3020 ;;
3021 $MAIL_HOST)
3022 # for bk, we have a exim4in.service that will do this for us.
3023 m update-exim4.conf -d /etc/myexim4
3024 ;;
3025 esac
3026
3027 # * spool dir setup
3028
3029 # ** bind mount setup
3030 # put spool dir in directory that spans multiple distros.
3031 # based on http://www.postfix.org/qmgr.8.html and my notes in gnus
3032 #
3033 dir=/nocow/exim4
3034 sdir=/var/spool/exim4
3035 # we only do this if our system has $dir
3036
3037 # this used to do a symlink, but, in the boot logs, /nocow would get mounted succesfully,
3038 # about 2 seconds later, exim starts, and immediately puts into paniclog:
3039 # honVi-0000u3-82 Failed to create directory "/var/spool/exim4/input": No such file or directory
3040 # so, im trying a bind mount to get rid of that.
3041 if [[ -e /nocow ]]; then
3042 if ! grep -Fx "/nocow/exim4 /var/spool/exim4 none bind 0 0" /etc/fstab; then
3043 echo "/nocow/exim4 /var/spool/exim4 none bind 0 0" >>/etc/fstab
3044 fi
3045 i /etc/systemd/system/exim4.service.d/override.conf <<'EOF'
3046 [Unit]
3047 # without local-fs on exim, we get these kind of errors in paniclog on shutdown:
3048 # Failed to create spool file /var/spool/exim4//input//1jCLxz-0008V4-V9-D: Permission denied
3049 After=local-fs.target
3050
3051 [Service]
3052 ExecStartPre=/usr/local/bin/exim-nn-iptables
3053 EOF
3054 if ! mountpoint -q $sdir; then
3055 stopifactive exim4 exim4in
3056 if [[ -L $sdir ]]; then
3057 m rm $sdir
3058 fi
3059 if [[ ! -e $dir && -d $sdir ]]; then
3060 m mv $sdir $dir
3061 fi
3062 if [[ ! -d $sdir ]]; then
3063 m mkdir $sdir
3064 m chmod 000 $sdir # only want it to be used when its mounted
3065 fi
3066 m mount $sdir
3067 fi
3068 fi
3069
3070
3071
3072 # ** exim/spool uid setup
3073 # i have the spool directory be common to distro multi-boot, so
3074 # we need the uid to be the same. 608 cuz it's kind of in the middle
3075 # of the free system uids.
3076 IFS=:; read -r _ _ uid _ < <(getent passwd Debian-exim ||:) ||:; unset IFS
3077 IFS=:; read -r _ _ gid _ < <(getent group Debian-exim ||:) ||:; unset IFS
3078 if [[ ! $uid ]]; then
3079 # from /var/lib/dpkg/info/exim4-base.postinst, plus uid and gid options
3080 m adduser --uid 608 --system --group --quiet --home /var/spool/exim4 \
3081 --no-create-home --disabled-login --force-badname Debian-exim
3082 elif [[ $uid != 608 ]]; then
3083 stopifactive exim4 exim4in
3084 m usermod -u 608 Debian-exim
3085 m groupmod -g 608 Debian-exim
3086 m usermod -g 608 Debian-exim
3087 m find / /nocow -xdev -path ./var/tmp -prune -o -uid $uid -execdir chown -h 608 {} +
3088 m find / /nocow -xdev -path ./var/tmp -prune -o -gid $gid -execdir chgrp -h 608 {} +
3089 fi
3090
3091 # * start / stop services
3092
3093 reifactive dnsmasq nscd
3094
3095 if $reload; then
3096 m systemctl daemon-reload
3097 fi
3098
3099 sysd-prom-fail-install epanicclean
3100 m systemctl --now enable epanicclean
3101
3102 case $HOSTNAME in
3103 je)
3104 /a/exe/web-conf apache2 je.b8.nz
3105 ;;
3106 bk)
3107 /a/exe/web-conf apache2 mail2.iankelling.org
3108 ;;
3109 esac
3110
3111 m /a/bin/ds/mail-cert-cron -1
3112 sre mailcert.timer
3113
3114 case $HOSTNAME in
3115 $MAIL_HOST|bk)
3116 m systemctl --now enable mailnn mailnnroute
3117 ;;&
3118 $MAIL_HOST)
3119 # we use dns to start wg
3120 if $reload; then
3121 sre unbound
3122 else
3123 m systemctl --now enable unbound
3124 fi
3125 ;;&
3126 $MAIL_HOST|bk)
3127 # If these have changes, id rather manually restart it, id rather
3128 # not restart and cause temporary errors
3129 if $reload; then
3130 sre $vpnser
3131 else
3132 m systemctl --now enable $vpnser
3133 fi
3134 if ! systemctl is-active clamav-daemon >/dev/null; then
3135 m systemctl --now enable clamav-daemon
3136 out=$(rsync -aiSAX --chown=root:root --chmod=g-s /a/bin/ds/filesystem/etc/systemd/system/epanicclean.service /etc/systemd/system)
3137 if [[ $out ]]; then
3138 reload=true
3139 fi
3140
3141 # note, this will cause paniclog entries because it takes like 45
3142 # seconds for clamav to start, i use ./epanic-clean to remove
3143 # them.
3144 fi
3145 ;;&
3146 $MAIL_HOST|bk|je)
3147 # start spamassassin/dovecot before exim.
3148 sre dovecot spamassassin
3149 # need to wait a bit before restarting exim, else I
3150 # get a paniclog entry like: spam acl condition: all spamd servers failed
3151 sleep 3
3152 m systemctl --now enable mailclean.timer
3153 ;;&
3154 $MAIL_HOST)
3155 # < 2.1 (eg: in t9), uses a different data format which required manual
3156 # migration. dont start if we are running an old version.
3157 if dpkg --compare-versions $(dpkg -s radicale | awk '$1 == "Version:" { print $2 }') ge 2.1; then
3158 m systemctl --now enable radicale
3159 fi
3160 ;;&
3161 esac
3162
3163 # last use of $reload happens in previous block
3164 rm -f /var/local/mail-setup-reload
3165
3166
3167 case $HOSTNAME in
3168 $MAIL_HOST|bk|je|li)
3169 # on li, these are never started, except $vpnser
3170 :
3171 ;;
3172 *)
3173 soff radicale mailclean.timer dovecot spamassassin $vpnser mailnn clamav-daemon
3174 ;;
3175 esac
3176
3177 sre exim4
3178
3179 case $HOSTNAME in
3180 $MAIL_HOST)
3181 m systemctl --now enable mailbindwatchdog
3182 ;;
3183 *)
3184 soff mailbindwatchdog
3185 ;;
3186 esac
3187
3188
3189 case $HOSTNAME in
3190 bk) sre exim4in ;;
3191 esac
3192
3193 # * mail monitoring / testing
3194
3195 # note, to test clamav, send an email with body that only contains
3196 # https://en.wikipedia.org/wiki/EICAR_test_file
3197 # which set malware_name to Eicar-Signature
3198 case $HOSTNAME in
3199 $MAIL_HOST|bk|je)
3200 # note: cronjob "ian" also does some important monitoring
3201 # todo: this will sometimes cause an alert because mailtest-check will run
3202 # before we have setup network namespace and spamassassin
3203 cat >/etc/cron.d/mailtest <<EOF
3204 SHELL=/bin/bash
3205 PATH=/usr/bin:/bin:/usr/local/bin
3206 MAILTO=daylert@iankelling.org
3207 */5 * * * * $u send-test-forward |& log-once send-test-forward
3208 */10 * * * * root chmod -R g+rw /m/md/bounces |& log-once -1 bounces-chmod
3209 # todo: delete, this is old
3210 #*/5 * * * * root timeout 290 mailtest-check slow |& log-once -1 mailtest-check
3211 # if a bounce happened yesterday, dont let it slip through the cracks
3212 8 1 * * * root export MAILTO=alerts@iankelling.org; [[ -s /var/log/exim4/mainlog.1 ]] && awk '\$5 == "**"' /var/log/exim4/mainlog.1
3213 EOF
3214
3215
3216 m sudo rsync -ahhi --chown=root:root --chmod=0755 \
3217 /b/ds/mailtest-check /b/ds/check-remote-mailqs /usr/local/bin/
3218 cat >/etc/systemd/system/mailtest-check.service <<'EOF'
3219 [Unit]
3220 Description=mailtest-check
3221 After=local-fs.target
3222 StartLimitIntervalSec=0
3223
3224 [Service]
3225 Type=simple
3226 ExecStart=/usr/local/bin/mailtest-check slow
3227 Restart=always
3228 RestartSec=60
3229
3230 [Install]
3231 WantedBy=graphical.target
3232 EOF
3233 sysd-prom-fail-install mailtest-check
3234 sre mailtest-check
3235 ;;&
3236 $MAIL_HOST)
3237 test_froms=(ian@iankelling.org z@zroe.org iank@gnu.org)
3238 test_tos=(testignore@expertpathologyreview.com testignore@je.b8.nz testignore@amnimal.ninja jtuttle@gnu.org)
3239
3240 cat >>/etc/cron.d/mailtest <<EOF
3241 0 13 * * * root echo "1pm alert. You are not in the matrix."
3242 2 * * * * root check-remote-mailqs |& log-once check-remote-mailqs
3243 EOF
3244 ;;&
3245 bk)
3246 test_froms=(testignore@amnimal.ninja testignore@expertpathologyreview.com)
3247 test_tos=(testignore@iankelling.org testignore@je.b8.nz)
3248 # We dont need to send from different addresses to the same
3249 # address. this breaks down our nice elegant logic of building up
3250 # froms and tos , so I just handle expertpath in a special case
3251 # below and set the to: to be testignore@zroe.org. If we did sent
3252 # that way, it would also mess up our mailtest-check logic that
3253 # finds which messages to check.
3254 # for example: from testignore@amnimal.ninja to: testignore@iankelling.org testignore@zroe.org
3255 # that would become 2 messages and we'd only check 1.
3256 ;;&
3257 je)
3258 test_froms=(testignore@je.b8.nz)
3259 test_tos=(testignore@iankelling.org testignore@zroe.org testignore@expertpathologyreview.com testignore@amnimal.ninja)
3260 ;;&
3261 $MAIL_HOST|bk|je)
3262
3263 # Dont put these test messages into the sent folder or else it will
3264 # overwhelm it, plus i dont want to save a copy at all.
3265 rm -f /etc/exim4/ignore-sent
3266 for t in ${test_tos[@]}; do
3267 echo $t >> /etc/exim4/ignore-sent
3268 done
3269
3270 cat >/usr/local/bin/send-test-forward <<'EOF'
3271 #!/bin/bash
3272 # we remove from the queue older than 4.3 minutes since we send every 5 minutes.
3273 olds=(
3274 $(/usr/sbin/exiqgrep -o 260 -i -r '^(testignore@(iankelling\.org|zroe\.org|expertpathologyreview\.com|amnimal\.ninja|je\.b8\.nz)|jtuttle@gnu\.org)$')
3275 )
3276 if (( ${#olds[@]} )); then
3277 /usr/sbin/exim -Mrm "${olds[@]}" >/dev/null
3278 fi
3279 EOF
3280 for test_from in ${test_froms[@]}; do
3281
3282 test_to=${test_tos[0]}
3283 for t in ${test_tos[@]:1}; do
3284 test_to+=", $t"
3285 done
3286 case $test_from in
3287 testignore@expertpathologyreview.com)
3288 test_to=testignore@zroe.org
3289 ;;
3290 esac
3291
3292 cat >>/usr/local/bin/send-test-forward <<EOFOUTER
3293 /usr/sbin/exim -f $test_from -t <<EOF
3294 From: $test_from
3295 To: $test_to
3296 Subject: test \$(date +%Y-%m-%dT%H:%M:%S%z) \$EPOCHSECONDS
3297
3298 /usr/local/bin/send-test-forward
3299 EOF
3300 EOFOUTER
3301 done
3302 m chmod +x /usr/local/bin/send-test-forward
3303 ;;
3304 *)
3305 soff mailtest-check.service
3306 rm -fv /etc/cron.d/mailtest
3307 ;;
3308 esac
3309
3310
3311
3312 # * misc
3313 m sudo -u $u mkdir -p /home/$u/.cache
3314 set -- /m/mucache /home/$u/.cache/mu /m/.mu /home/$u/.mu
3315 while (($#)); do
3316 target=$1
3317 f=$2
3318 shift 2
3319 if [[ ! -L $f ]]; then
3320 if [[ -e $f ]]; then
3321 rm -rf $f
3322 fi
3323 m sudo -u $u ln -sf -T $target $f
3324 fi
3325 done
3326
3327
3328 # /etc/alias setup is debian specific, and exim postinst script sets up
3329 # an /etc/alias from root to the postmaster, based on the question
3330 # exim4-config exim4/dc_postmaster, as long as there exists an entry for
3331 # root, or there was no preexisting aliases file. postfix won\'t set up
3332 # a root to $postmaster alias if it\'s already installed. Easiest to
3333 # just set it ourselves.
3334
3335 # debconf question for postmaster:
3336 # Mail for the 'postmaster', 'root', and other system accounts needs to be redirected
3337 # to the user account of the actual system administrator.
3338 # If this value is left empty, such mail will be saved in /var/mail/mail, which is not
3339 # recommended.
3340 # Note that postmaster\'s mail should be read on the system to which it is directed,
3341 # rather than being forwarded elsewhere, so (at least one of) the users listed here
3342 # should not redirect their mail off this machine. A 'real-' prefix can be used to
3343 # force local delivery.
3344 # Multiple user names need to be separated by spaces.
3345 # Root and postmaster mail recipient:
3346
3347 m exit 0
3348 :
3349
3350 # Local Variables:
3351 # eval: (outline-minor-mode)
3352 # outline-regexp: "\\( *\\)# [*]\\{1,8\\} "
3353 # End:
3354 # this is combined with defining outline-level in init.el