diff options
Diffstat (limited to '')
-rwxr-xr-x | bin/mutt-autoalias | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/mutt-autoalias b/bin/mutt-autoalias deleted file mode 100755 index a9725d5..0000000 --- a/bin/mutt-autoalias +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -MESSAGE=$(cat) - -EXCLUDE="\(.*@bugs.\(debian.org|launchpad.net\)|.*@.*.launchpad.net|noreply|.*facebook.*|.*gmail.com.*Behalf Of\)" -NEWALIAS=$(echo "${MESSAGE}" | grep ^"From: " | egrep -v "${EXCLUDE}" | sed s/[\,\"\']//g | awk '{$1=""; if (NF == 3) {print "alias" $0;} else if (NF == 2) {print "alias" $0 $0;} else if (NF > 3) {print "alias", tolower($(NF-1))"."tolower($2) $0;}}') - -if grep -Fxq "$NEWALIAS" $HOME/.mutt/alias.rc; then - : -elif [ "x${NEWALIAS}" = "x" ]; then - : -else - echo "$NEWALIAS" >> $HOME/.mutt/alias.rc -fi - -echo "${MESSAGE}" |