blob: 68f71a9d9c385be555accbc2ea97fb2d35273f9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
for ((i = 0; i < 32; i++)); do
u="$(shuf -n1 -e "local" "remote")"
sample_message | deliver -u "$u"
done
# check that credentials aren't leaked to the debug output
interimap --debug || error
grep -Fx "remote: C: xxx AUTHENTICATE PLAIN [REDACTED]" <"$STDERR" || error
check_mailbox_status "INBOX"
# vim: set filetype=sh :
|