mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-03 15:40:32 +00:00
17 lines
365 B
Bash
Executable File
17 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
# malternative - multipart/alternative decoding policy
|
|
|
|
{
|
|
echo "Content-Type: $PIPE_CONTENTTYPE"
|
|
echo
|
|
cat
|
|
} | mshow -t /dev/stdin | awk '
|
|
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
|
|
}'
|