diff --git a/sys/src/cmd/upas/Mail/comp.c b/sys/src/cmd/upas/Mail/comp.c index d4e496928..bdf8c7aab 100644 --- a/sys/src/cmd/upas/Mail/comp.c +++ b/sys/src/cmd/upas/Mail/comp.c @@ -67,9 +67,6 @@ postmesg(Comp *c, char **, int nf) chanfree(c->sync); close(c->fd[0]); - /* needed because mail is by default Latin-1 */ - fprint(c->fd[1], "Content-Type: text/plain; charset=\"UTF-8\"\n"); - fprint(c->fd[1], "Content-Transfer-Encoding: 8bit\n"); buf = emalloc(Bufsz); while((n = read(fd, buf, Bufsz)) > 0) if(write(c->fd[1], buf, n) != n)