diff options
author | Ori Bernstein <ori@eigenstate.org> | 2023-01-14 21:12:24 +0000 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2023-01-14 21:12:24 +0000 |
commit | c8c97919b2b89a8eb5a7d52b03bfb8a634098faf (patch) | |
tree | 943356df0bcd4eb7b395aff4325b8bc74be71de4 /sys/src/cmd/upas | |
parent | 6383135fb64e443c8886f076f35e0e3a82f0a1dc (diff) |
upas/Mail: stop splitting headers
when sending messages, we do not merge headers, so
splitting headers the way we did leads to invalid
messages getting sent; stop doing it.
Diffstat (limited to 'sys/src/cmd/upas')
-rw-r--r-- | sys/src/cmd/upas/Mail/comp.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/src/cmd/upas/Mail/comp.c b/sys/src/cmd/upas/Mail/comp.c index 5ae6049a1..e9cf5266b 100644 --- a/sys/src/cmd/upas/Mail/comp.c +++ b/sys/src/cmd/upas/Mail/comp.c @@ -210,11 +210,6 @@ show(Biobuf *fd, char *type, char **addrs, int naddrs) continue; w += Bprint(fd, "%s%s", sep, addrs[i]); sep = ", "; - if(w > 50 && i < naddrs-1){ - w = 0; - sep = ""; - Bprint(fd, "\n%s: ", type); - } } Bprint(fd, "\n"); } |