mblaze/contrib/malternative

17 lines
356 B
Plaintext
Raw Normal View History

2016-07-29 13:57:02 +00:00
#!/bin/sh
# malternative - multipart/alternative decoding policy
{
echo "Content-Type: $PIPE_CONTENTTYPE"
echo
cat
} | mshow -t - | awk '
2016-07-29 13:57:02 +00:00
BEGIN { split("", ct) }
/^ [0-9]/ { ct[++n] = $2 }
function prefer(t) { for (i in ct) if (ct[i] == t) exit(64+i) }
END {
prefer("text/plain")
prefer("text/html")
exit 64+1 # default to first part
}'