diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-10-02 17:41:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-10-02 17:41:09 +0000 |
commit | 84bc861ea542c95bedf07c317f793c9ba0be3414 (patch) | |
tree | f0f6452b697f57a7d4261700751a503b3dbe2640 /fetchmail.c | |
parent | c8736933fdb887cf82d99b859c7feb803e2fd3c3 (diff) | |
download | fetchmail-84bc861ea542c95bedf07c317f793c9ba0be3414.tar.gz fetchmail-84bc861ea542c95bedf07c317f793c9ba0be3414.tar.bz2 fetchmail-84bc861ea542c95bedf07c317f793c9ba0be3414.zip |
Mimedecode now defaults to "off".
svn path=/trunk/; revision=2632
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 61737774..0905be27 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1000,7 +1000,7 @@ static int load_params(int argc, char **argv, int optind) DEFAULT(ctl->forcecr, FALSE); DEFAULT(ctl->pass8bits, FALSE); DEFAULT(ctl->dropstatus, FALSE); - DEFAULT(ctl->mimedecode, TRUE); + DEFAULT(ctl->mimedecode, FALSE); DEFAULT(ctl->server.dns, TRUE); DEFAULT(ctl->server.uidl, FALSE); DEFAULT(ctl->server.checkalias, FALSE); |