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