1
0
mirror of https://github.com/docker-mailserver/docker-mailserver.git synced 2025-08-07 23:03:10 +02:00

Fix several typos (#2993)

This commit is contained in:
Casper
2023-01-11 01:31:21 +01:00
committed by GitHub
parent 6ac59ef871
commit dcf34fd63b
6 changed files with 9 additions and 9 deletions

View File

@ -30,7 +30,7 @@ plugin {
# You can execute a given command when user exceeds a specified quota limit.
# Each quota root has separate limits. Only the command for the first
# exceeded limit is excecuted, so put the highest limit first.
# exceeded limit is executed, so put the highest limit first.
# The commands are executed via script service by connecting to the named
# UNIX socket (quota-warning below).
# Note that % needs to be escaped as %%, otherwise "% " expands to empty.

View File

@ -14,7 +14,7 @@ passdb {
#args = dovecot
}
# System users (NSS, /etc/passwd, or similiar).
# System users (NSS, /etc/passwd, or similar).
# In many systems nowadays this uses Name Service Switch, which is
# configured in /etc/nsswitch.conf. <doc/wiki/AuthDatabase.Passwd.txt>
#passdb {
@ -23,7 +23,7 @@ passdb {
#args =
#}
# Shadow passwords for system users (NSS, /etc/shadow or similiar).
# Shadow passwords for system users (NSS, /etc/shadow or similar).
# Deprecated by PAM nowadays.
# <doc/wiki/PasswordDatabase.Shadow.txt>
#passdb {
@ -44,7 +44,7 @@ passdb {
## User databases
##
# System users (NSS, /etc/passwd, or similiar). In many systems nowadays this
# System users (NSS, /etc/passwd, or similar). In many systems nowadays this
# uses Name Service Switch, which is configured in /etc/nsswitch.conf.
userdb {
# <doc/wiki/AuthDatabase.Passwd.txt>

View File

@ -30,7 +30,7 @@ teardown_file() {
}
@test "checking postfix-lmtp: delivers mail to existing account" {
# maybe we can move this into the setup to speed things up futher.
# maybe we can move this into the setup to speed things up further.
# this likely would need an async coroutine to avoid blocking the other tests while waiting for the server to come up
wait_for_smtp_port_in_container mail_lmtp_ip
run docker exec mail_lmtp_ip /bin/sh -c "nc 0.0.0.0 25 < /tmp/docker-mailserver-test/email-templates/existing-user1.txt"

View File

@ -126,7 +126,7 @@ BATS_TEST_NAME_PREFIX='test helper functions:'
run cat "${path}/marker"
assert_line "This marker file is there to identify the correct config being copied"
run duplicate_config_for_container non-existant-source-folder "${BATS_TEST_NAME}2"
run duplicate_config_for_container non-existent-source-folder "${BATS_TEST_NAME}2"
assert_failure
}