diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-28 23:04:24 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-28 23:04:24 +0000 |
commit | 0a040ad1ca1faf244a03ef15070656e8293a4a5c (patch) | |
tree | da2ef8022447646a17e17a227894d590ca8b4943 /fetchmail.c | |
parent | a9cfa71d5b0ff5280b21a8c7eb62d8ef4ce1d85f (diff) | |
download | fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.tar.gz fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.tar.bz2 fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.zip |
Added bsmtp option.
svn path=/trunk/; revision=2144
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index a6b4603d..bcad08fb 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -749,6 +749,7 @@ static void optmerge(struct query *h2, struct query *h1, int force) FLAG_MERGE(remotename); FLAG_MERGE(password); FLAG_MERGE(mda); + FLAG_MERGE(bsmtp); FLAG_MERGE(smtpaddress); FLAG_MERGE(preconnect); FLAG_MERGE(postconnect); @@ -1344,7 +1345,9 @@ void dump_params (struct runctl *runp, struct query *querylist, flag implicit) else if (outlevel >= O_VERBOSE) printf(" No expunges (--expunge 0).\n"); } - if (ctl->mda && (ctl->server.protocol != P_ETRN)) + if (ctl->bsmtp) + printf(" Messages will be appended to %s as BSMTP\n", visbuf(ctl->bsmtp)); + else if (ctl->mda && (ctl->server.protocol != P_ETRN)) printf(" Messages will be delivered with \"%s\".\n", visbuf(ctl->mda)); else { |