From 0ba724072f4a112d3dc56985236b7fdb805bf9fb Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Sun, 7 Nov 1999 22:52:40 +0000 Subject: [PATCH] short-cut utf-7 as a 7bit character set. Currently, utf-7 may be overridden by us-ascii. --- sendlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.40.0