mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-23 15:37:01 +00:00
Fix documentation/comment typos
This patch fixes a variety of typos in documentation and comments, found by running `codespell`.
This commit is contained in:
@@ -37,7 +37,7 @@ if ! run_msmtp -a subm_tls someone@testserver < content 2> /dev/null; then
|
||||
fi
|
||||
|
||||
if run_msmtp nobody@testserver < content 2> /dev/null; then
|
||||
fail "successfuly sent an email to a non-existent user"
|
||||
fail "successfully sent an email to a non-existent user"
|
||||
fi
|
||||
|
||||
if run_msmtp -a baduser someone@testserver < content 2> /dev/null; then
|
||||
|
||||
@@ -18,7 +18,7 @@ fi
|
||||
|
||||
# Create a temporary directory for dovecot to use, and generate the dovecot
|
||||
# config based on the template.
|
||||
# Note the lenght of the path must be < 100, because unix sockets have a low
|
||||
# Note the length of the path must be < 100, because unix sockets have a low
|
||||
# limitation, so we use a directory in /tmp, which is not ideal, as a
|
||||
# workaround.
|
||||
export ROOT="/tmp/chasquid-dovecot-test"
|
||||
@@ -69,7 +69,7 @@ mail_diff content .mail/naked@srv
|
||||
|
||||
# Fail to send to nobody@srv (user does not exist).
|
||||
if run_msmtp nobody@srv < content 2> /dev/null; then
|
||||
fail "successfuly sent an email to a non-existent user"
|
||||
fail "successfully sent an email to a non-existent user"
|
||||
fi
|
||||
|
||||
# Fail to send from baduser@srv (user does not exist).
|
||||
|
||||
@@ -37,7 +37,7 @@ if [ "$AUTH_AS" != "" ]; then
|
||||
rm "$TF.dkimout"
|
||||
else
|
||||
# NOTE: This is using driusan/dkim instead of dkimpy, because dkimpy can't be
|
||||
# overriden to get the DNS information from anywhere else (text file or custom
|
||||
# overridden to get the DNS information from anywhere else (text file or custom
|
||||
# DNS server).
|
||||
dkimverify -txt ../.dkimcerts/private.dns < "$TF"
|
||||
fi
|
||||
|
||||
@@ -56,7 +56,7 @@ fi
|
||||
|
||||
# Verify the signature manually, just in case.
|
||||
# NOTE: This is using driusan/dkim instead of dkimpy, because dkimpy can't be
|
||||
# overriden to get the DNS information from anywhere else (text file or custom
|
||||
# overridden to get the DNS information from anywhere else (text file or custom
|
||||
# DNS server).
|
||||
dkimverify -txt .dkimcerts/private.dns < .mail/someone@testserver
|
||||
|
||||
|
||||
Reference in New Issue
Block a user