ref: 1caf29cbe2161275971432ed017d807ee062c4ae
parent: c350d05b3a293d16bb5c46b731337f01769083c2
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Fri Nov 30 10:13:23 EST 2012
upas/ned: fix M command
--- a/sys/src/cmd/upas/ned/nedmail.c
+++ b/sys/src/cmd/upas/ned/nedmail.c
@@ -1877,8 +1877,6 @@
return nil;
}
- av[ai++] = "-8";
-
av[ai++] = "-t";
if(m->parent == &top)
av[ai++] = "message/rfc822";
@@ -1891,6 +1889,8 @@
if(strchr(c->av[0], 'M') == nil)
av[ai++] = "-n";
+ else
+ av[ai++] = "-8";
for(i = 1; i < c->an && ai < nelem(av)-1; i++)
av[ai++] = c->av[i];
--
⑨