From 9e223693bd1bb9d6ede1d05f62cc1cf009c23c62 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 21 Jan 2024 19:10:58 -0700 Subject: [PATCH] =?utf8?q?=20=20=20*=20Alpine=20does=20not=20decode=208-bi?= =?utf8?q?t=20characters=20for=20a=20message=20that=20has=20been=20=20=20?= =?utf8?q?=20=20=20postponed=20if=20these=20appear=20in=20the=20sent-mail?= =?utf8?q?=20folder.=20Reported=20by=20=20=20=20=20=20Daniel=20Bystr=C3=B6?= =?utf8?q?m.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- pith/send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pith/send.c b/pith/send.c index d2bbdf4..c8f7f12 100644 --- a/pith/send.c +++ b/pith/send.c @@ -503,7 +503,7 @@ redraft_work(MAILSTREAM **streamp, long int cont_msg, ENVELOPE **outgoing, } if(fcc) /* fcc: special case... */ - *fcc = values[INDEX_FCC] ? values[INDEX_FCC] : cpystr(""); + *fcc = values[INDEX_FCC] ? cpystr(rfc1522_decode_to_utf8(tmp_20k_buf, SIZEOF_20KBUF, values[INDEX_FCC])) : cpystr(""); else if(values[INDEX_FCC]) fs_give((void **) &values[INDEX_FCC]); -- 2.11.4.GIT