aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-19 14:39:22 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-19 14:39:22 +0000
commit73562230401b2cd48301805f03aee052927fadd2 (patch)
treeef4f0d405b68cab7f47fb74e26c9ea6fbe39c31b
parent3c4ab481e9cfe604f283f7173405fc27ae91b226 (diff)
downloadfetchmail-73562230401b2cd48301805f03aee052927fadd2.tar.gz
fetchmail-73562230401b2cd48301805f03aee052927fadd2.tar.bz2
fetchmail-73562230401b2cd48301805f03aee052927fadd2.zip
Don't set up MDA if we're in check_only mode.
svn path=/trunk/; revision=352
-rw-r--r--fetchmail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index eedff724..0bdae28c 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -194,7 +194,7 @@ char **argv;
}
/* expand MDA commands */
- if (hostp->mda[0])
+ if (!check_only && hostp->mda[0])
{
int argi;
char *argp;