From e7129bf90a1b361e07365002379d8d2874c0f771 Mon Sep 17 00:00:00 2001 From: David Levine Date: Thu, 10 May 2012 21:23:09 -0500 Subject: [PATCH] Don't test with sendmail because it would really send the mail. If configured to use sendmail, change the mts.conf used by the test suite to use smtp instead. --- test/common.sh.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/common.sh.in b/test/common.sh.in index fa8a037..b1fd484 100644 --- a/test/common.sh.in +++ b/test/common.sh.in @@ -145,6 +145,12 @@ setup_test () else (cd ${MH_OBJ_DIR} && make DESTDIR=${MH_INST_DIR} SETGID_MAIL= install) || exit 1 + + #### Don't test with sendmail because it would really send the + #### mail. If configured to use sendmail, change to smtp instead + #### so that we use fakesmtp. + sed -e 's/mts: *sendmail/mts: smtp/' ${MHMTSCONF} >${MHMTSCONF}.new + mv -f ${MHMTSCONF}.new ${MHMTSCONF} fi # clean old test data -- 1.7.10.4