mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-18 14:47:03 +00:00
There's a bug in wget where it logs to files if -q is used: https://savannah.gnu.org/bugs/?51181 It is harmless to the test, but it clutters the directory and the test output, so this patch works around the issue by forcing it to log to /dev/null.
53 lines
1.3 KiB
Bash
Executable File
53 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
. $(dirname ${0})/../util/lib.sh
|
|
|
|
init
|
|
|
|
rm -rf .data-A .data-B .mail
|
|
|
|
# Two servers:
|
|
# A - listens on :1025, hosts srv-A
|
|
# B - listens on :2015, hosts srv-B
|
|
#
|
|
# We cause the following loop:
|
|
# userA -> aliasB -> aliasA -> aliasB -> ...
|
|
|
|
CONFDIR=A generate_certs_for srv-A
|
|
CONFDIR=A add_user userA@srv-A userA
|
|
|
|
CONFDIR=B generate_certs_for srv-B
|
|
|
|
mkdir -p .logs-A .logs-B
|
|
|
|
chasquid -v=2 --logfile=.logs-A/chasquid.log --config_dir=A \
|
|
--testing__max_received_headers=5 \
|
|
--testing__outgoing_smtp_port=2025 &
|
|
chasquid -v=2 --logfile=.logs-B/chasquid.log --config_dir=B \
|
|
--testing__outgoing_smtp_port=1025 &
|
|
|
|
wait_until_ready 1025
|
|
wait_until_ready 2025
|
|
|
|
run_msmtp aliasB@srv-B < content
|
|
|
|
# Wait until one of them has noticed and stopped the loop.
|
|
while sleep 0.1; do
|
|
wget -q -o /dev/null -O .data-A/vars http://localhost:1099/debug/vars
|
|
wget -q -o /dev/null -O .data-B/vars http://localhost:2099/debug/vars
|
|
if grep -q '"chasquid/smtpIn/loopsDetected": 1,' .data-?/vars; then
|
|
break
|
|
fi
|
|
done
|
|
|
|
# Test that A has outgoing domaininfo for srv-b.
|
|
# This is unrelated to the loop itself, but serves as an end-to-end
|
|
# verification that outgoing domaininfo works.
|
|
if ! grep -q "outgoing_sec_level: TLS_INSECURE" ".data-A/domaininfo/s:srv-b";
|
|
then
|
|
fail "A is missing the domaininfo for srv-b"
|
|
fi
|
|
|
|
success
|