1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#!/bin/sh
#
# Test the behavior of post with multiple recipients
#
set -e
if test -z "${MH_OBJ_DIR}"; then
srcdir=`dirname "$0"`/../..
MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR
fi
. "${srcdir}/test/post/test-post-common.sh"
#
# Multiple recipients test
#
cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
From: Mr Nobody <nobody@example.com>
To: Somebody One <somebody1@example.com>,
Somebody Two <somebody2@example.com>
Subject: Test multiple
This is test of multiple recipients.
EOF
cat > "${testname}.expected" <<EOF
EHLO nosuchhost.example.com
MAIL FROM:<nobody@example.com>
RCPT TO:<somebody1@example.com>
RCPT TO:<somebody2@example.com>
DATA
From: Mr Nobody <nobody@example.com>
To: Somebody One <somebody1@example.com>,
Somebody Two <somebody2@example.com>
Subject: Test multiple
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date:
This is test of multiple recipients.
.
QUIT
EOF
test_post "${testname}.actual" "${testname}.expected"
exit ${failed:-0}
|