mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-15 18:14:02 +00:00
21 lines
342 B
Plaintext
21 lines
342 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
tmp=$(mktemp)
|
||
|
trap "rm -f '$tmp'" INT TERM EXIT
|
||
|
|
||
|
{
|
||
|
echo "Content-Type: $PIPE_CONTENTTYPE"
|
||
|
echo
|
||
|
cat
|
||
|
} > "$tmp"
|
||
|
|
||
|
n=$(mshow -t "$tmp" | awk -F: '
|
||
|
/: application\/pgp-encrypted/ {supported = 1}
|
||
|
/: application\/octet-stream/ {if (supported) print $1}')
|
||
|
|
||
|
if [ "$n" ]; then
|
||
|
mshow -O "$tmp" "$n" | gpg -d 2>&1
|
||
|
exit 64
|
||
|
fi
|
||
|
exit 63
|