diff options
author | Eduardo Chappa <chappa@washington.edu> | 2024-01-21 19:10:58 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2024-01-21 19:10:58 -0700 |
commit | 9e223693bd1bb9d6ede1d05f62cc1cf009c23c62 (patch) | |
tree | b1c25da96afd8cb570c6b74a422134c837522bb0 | |
parent | a55202787df1d5cfd3e37cb4c021422ee4aa9530 (diff) | |
download | alpine-9e223693bd1bb9d6ede1d05f62cc1cf009c23c62.tar.xz |
* Alpine does not decode 8-bit characters for a message that has been
postponed if these appear in the sent-mail folder. Reported by
Daniel Byström.
-rw-r--r-- | pith/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pith/send.c b/pith/send.c index d2bbdf43..c8f7f123 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]); |