diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-01-10 00:10:42 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-01-10 00:10:42 +0000 |
commit | d9af45254db506bfc07b3be948f172ccd9e8159b (patch) | |
tree | 62a0a1c4dbbe2df70bdd45b79fd9465e8fa2d8cf | |
parent | f2c6d1760ac6971fcc63c9dbde8752dc721c6bc3 (diff) | |
download | fetchmail-d9af45254db506bfc07b3be948f172ccd9e8159b.tar.gz fetchmail-d9af45254db506bfc07b3be948f172ccd9e8159b.tar.bz2 fetchmail-d9af45254db506bfc07b3be948f172ccd9e8159b.zip |
Make the mimedecode default TRUE.
svn path=/trunk/; revision=2346
-rw-r--r-- | fetchmail-features.html | 7 | ||||
-rw-r--r-- | fetchmail.c | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/fetchmail-features.html b/fetchmail-features.html index fd237ddb..191197dc 100644 --- a/fetchmail-features.html +++ b/fetchmail-features.html @@ -10,7 +10,7 @@ <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1999/01/07 20:43:52 $ +<td width="30%" align=right>$Date: 1999/01/10 00:10:42 $ </table> <HR> @@ -39,7 +39,8 @@ in <a href="http://www.demon.net/">www.demon.net</a>'s POP3 service. <LI> Code is 64-bit clean and Y2K-safe. -<LI> Can axutomatically decodes armored 7-bit MIME into 8 bits. +<LI> Automatically decodes armored 7-bit MIME into 8 bits (this can be +suppressed). <LI> You can specify which SMTP error is recognized as a spam block. @@ -165,7 +166,7 @@ get-mail, gwpop, pimp-1.0, pop-perl5-1.2, popc, popmail-1.6 and upop.<P> <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1999/01/07 20:43:52 $ +<td width="30%" align=right>$Date: 1999/01/10 00:10:42 $ </table> <P><ADDRESS>Eric S. Raymond <A HREF="mailto:esr@thyrsus.com"><esr@snark.thyrsus.com></A></ADDRESS> diff --git a/fetchmail.c b/fetchmail.c index 7284477c..8954e45e 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -944,7 +944,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, FALSE); + DEFAULT(ctl->mimedecode, TRUE); DEFAULT(ctl->server.dns, TRUE); DEFAULT(ctl->server.uidl, FALSE); DEFAULT(ctl->server.checkalias, FALSE); |