aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-05-22 21:17:31 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-05-22 21:17:31 +0000
commite97d69be53c031cf2c52d31eb2063c8bc89aa185 (patch)
tree2db66ee3a45a810702377e4a681284eea25f2651
parent703f7886706bd5a7fc34db647edb3fbea5553c0a (diff)
downloadfetchmail-e97d69be53c031cf2c52d31eb2063c8bc89aa185.tar.gz
fetchmail-e97d69be53c031cf2c52d31eb2063c8bc89aa185.tar.bz2
fetchmail-e97d69be53c031cf2c52d31eb2063c8bc89aa185.zip
Added mimedecode dumping.
svn path=/trunk/; revision=1795
-rw-r--r--fetchmail.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 2da20e4c..dccf84cf 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1085,6 +1085,9 @@ void dump_params (struct query *ctl)
printf(" Interpretation of Content-Transfer-Encoding is %sabled (pass8bits %s).\n",
ctl->pass8bits ? "dis" : "en",
ctl->pass8bits ? "on" : "off");
+ printf(" MIME decoding is %sabled (mimedecode %s).\n",
+ ctl->mimedecode ? "dis" : "en",
+ ctl->mimedecode ? "on" : "off");
printf(" Nonempty Status lines will be %s (dropstatus %s)\n",
ctl->dropstatus ? "discarded" : "kept",
ctl->dropstatus ? "on" : "off");