summaryrefslogtreecommitdiffstats
path: root/sendlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-11-07 22:52:40 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-11-07 22:52:40 +0000
commit0ba724072f4a112d3dc56985236b7fdb805bf9fb (patch)
tree27bf3d9116c88faa6610d4ea0bb9ec037105fdc4 /sendlib.c
parent283cc465b8a09272d2c15e33e026b1d32eb312ae (diff)
short-cut utf-7 as a 7bit character set. Currently, utf-7 may be
overridden by us-ascii.
Diffstat (limited to 'sendlib.c')
-rw-r--r--sendlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sendlib.c b/sendlib.c
index 00eae548..9aa49c21 100644
--- a/sendlib.c
+++ b/sendlib.c
@@ -849,7 +849,7 @@ static const char *get_text_charset (BODY *b, CONTENT *info)
&& info->hibin)
return ("unknown-8bit");
- if (info->hibin)
+ if (info->hibin || !strcasecmp (chsname, "utf-7"))
return (chsname);
return ("us-ascii");