summaryrefslogtreecommitdiff
path: root/source/blog/2022
diff options
context:
space:
mode:
authorPrefetch2023-01-19 21:28:23 +0100
committerPrefetch2023-01-19 21:28:23 +0100
commit7a2346d3ee81c7c852de85527de056fe0b39aad8 (patch)
treed797e33d10841d61085a7b754ad2d115b28e0664 /source/blog/2022
parent5fc2fd763b07b735c2895f9375c2dfa6c43fe86a (diff)
More improvements to knowledge base
Diffstat (limited to 'source/blog/2022')
-rw-r--r--source/blog/2022/email-server-revisited/index.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blog/2022/email-server-revisited/index.md b/source/blog/2022/email-server-revisited/index.md
index 20eff24..9713b77 100644
--- a/source/blog/2022/email-server-revisited/index.md
+++ b/source/blog/2022/email-server-revisited/index.md
@@ -127,7 +127,7 @@ Here, `rsa-sha256` is the signature algorithm
(this is the best available, because DKIM is ancient),
and `relaxed/relaxed` is the so-called *canonicalization* method,
which is applied before signing and verification,
-to prevents failures if e.g. the email's whitespace gets changed in transit.
+to prevent failures if e.g. the email's whitespace gets changed in transit.
@@ -135,8 +135,8 @@ to prevents failures if e.g. the email's whitespace gets changed in transit.
OpenSMTPD needs to send all outbound mail through `dkimproxy.out`.
In `/etc/smtpd/smtpd.conf`, we tell it that all emails coming from the MUA
-must be relayed through `localhost:10027`, and then, after DKIM signing,
-picked up again on `localhost:10028`:
+must be relayed through `localhost:10027`,
+and then picked up again on `localhost:10028` after DKIM signing:
```sh
# Outbound
listen on eth0 port 465 smtps pki "example.com" auth <passwds> tag "TRUSTED"