#!/bin/sh # # Test the behavior of post with multiple recipients (& dcc) # 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" # # Dcc test # cat > "${MH_TEST_DIR}/Mail/draft" < To: Somebody One , Somebody Two Subject: Test Dcc Dcc: Somebody Three This is test of Dcc recipients. EOF cat > "${testname}.expected" < RCPT TO: RCPT TO: RCPT TO: DATA From: Mr Nobody To: Somebody One , Somebody Two Subject: Test Dcc Date: This is test of Dcc recipients. . QUIT EOF test_post "${testname}.actual" "${testname}.expected" exit ${failed:-0}