3 # Test the behavior of post with multiple recipients
8 if test -z "${MH_OBJ_DIR}"; then
9 srcdir=`dirname "$0"`/../..
10 MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR
13 . "${srcdir}/test/post/test-post-common.sh"
16 # Multiple recipients test
18 cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
19 From: Mr Nobody <nobody@example.com>
20 To: Somebody One <somebody1@example.com>,
21 Somebody Two <somebody2@example.com>
22 Subject: Test multiple
24 This is test of multiple recipients.
27 cat > "${testname}.expected" <<EOF
28 EHLO nosuchhost.example.com
29 MAIL FROM:<nobody@example.com>
30 RCPT TO:<somebody1@example.com>
31 RCPT TO:<somebody2@example.com>
33 From: Mr Nobody <nobody@example.com>
34 To: Somebody One <somebody1@example.com>,
35 Somebody Two <somebody2@example.com>
36 Subject: Test multiple
39 This is test of multiple recipients.
44 test_post "${testname}.actual" "${testname}.expected"