From cc3dd67078ef1ccb53c4fbc59e246e71051c4421 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Thu, 25 Jul 2013 08:19:51 -0400 Subject: Added a colouriser for gpg --- bin/gpg-check | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 bin/gpg-check (limited to 'bin') diff --git a/bin/gpg-check b/bin/gpg-check new file mode 100755 index 0000000..79948c9 --- /dev/null +++ b/bin/gpg-check @@ -0,0 +1,17 @@ +#!/bin/sh + +MSG=$(cat) + +echo "${MSG}" | grep 'BEGIN PGP SIGNATURE' > /dev/null 2>&1; +SIGNED=$? + +if [ ${SIGNED} = 0 ]; then + echo "${MSG}" | \ + sed -e '/^-\+BEGIN PGP SIGNED MESSAGE-\+/,/^Hash:.*/d' \ + -e '/^-\+BEGIN PGP SIGNATURE-\+/,$d' | \ + mutt-autoalias + echo '\n' + echo "${MSG}" | gpg --verify - 2>&1; +else + echo "${MSG}" | mutt-autoalias +fi -- cgit v1.2.3