From af23359633a9a6dc0ccce3c0d93ef2df73c667af Mon Sep 17 00:00:00 2001 From: Jan Pokorný Date: Fri, 12 Apr 2013 18:32:50 +0200 Subject: mutt: add script to get and prepare another script for notifications MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also make a .gitignore cleanup wrt mutt Signed-off-by: Jan Pokorný --- .mutt/maildir_watch_setup.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .mutt/maildir_watch_setup.sh (limited to '.mutt') diff --git a/.mutt/maildir_watch_setup.sh b/.mutt/maildir_watch_setup.sh new file mode 100755 index 0000000..53d9bb4 --- /dev/null +++ b/.mutt/maildir_watch_setup.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +# see misc/crontab +# the script suppose ./folders file with one folder per-line, +# prefixed with '=' and ending with '\' + +wget https://raw.github.com/erikw/dotfiles/personal/bin/maildir_watch.sh -O- \ + | sed \ + -e "s|\(maildir_path=\"\)[^\"]*\"|\1$( + grep -E 'set folder\s+=' ../.muttrc | tr -d ' ' | cut -d= -f2 | sed 's|\~|$HOME|' + )\"|" \ + -e "s|\(mailboxes=(\)[^)]*)|\1$( + grep -E '=[A-Za-z0-9.-]+\s.*\\' folders \ + | sed 's|^=\([A-Za-z0-9.-]\+\)\s.*$|\1|' | paste -s + ))|" > maildir_watch.sh +chmod +x maildir_watch.sh -- cgit