Hello,

> X-Spam-Status: No, score=-1.0 required=7.0 tests=ALL_TRUSTED,
>       PP_MIME_FAKE_ASCII_TEXT,SPF_PASS autolearn=ham autolearn_force=no
>       version=3.4.6
> 
> PP_MIME_FAKE_ASCII_TEXT means "MIME text/plain claims to be ASCII but isn't".

And it is quite right: it isn't. What happened was that you've forgotten
to specify charset:

> echo "Body äßñ" | "$HOME/blah...blah/mailutils-3.21.90-bin/bin/mail" -s 
> "Subject äßñ" -- "[email protected]"

This should have been:

  echo "Body äßñ" | mail -s "Subject äßñ" --content-type='text/plain; 
charset=utf-8' -- "[email protected]"

Note the --content-type option.

Regards,
Sergey

Reply via email to