From: Don Armstrong Date: Thu, 7 Mar 2013 01:32:52 +0000 (-0800) Subject: use notmuch if it exists X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=63700870fd936e6f70e8984233083243b61e68a5;p=bin.git use notmuch if it exists use ionice if it exists --- diff --git a/getmail b/getmail index ac82e97..d8cf119 100755 --- a/getmail +++ b/getmail @@ -16,6 +16,11 @@ if [ -z "$HOSTNAME" ]; then HOSTNAME="$(hostname)" fi; +IONICE="" +if which ionice >/dev/null 2>&1; then + IONICE="ionice -c 3" +fi; + # if we're not running under cron or there is a mailserver running if [ -z "$CRON" ] || kill -0 `pgrep -U $(id -u) -x $MUA` 2>/dev/null; then # and we can ping the imap host @@ -35,7 +40,7 @@ if [ -z "$CRON" ] || kill -0 `pgrep -U $(id -u) -x $MUA` 2>/dev/null; then fi; fi; if [ -z "$PID" ]; then - if nice -n 19 offlineimap -o -u Noninteractive.Basic 2>&1 |grep validity| \ + if nice -n 19 ${IONICE} offlineimap -o -u Noninteractive.Basic 2>&1 |grep validity| \ perl -ne 'my ($account,$list) = /UID validity problem for folder ([\w-]+)\.([\w-]+)/; next unless defined $account and length $account; qx(/home/don/bin/deletemailbox -a $account $list > /dev/null);'; then @@ -49,6 +54,9 @@ if [ -z "$CRON" ] || kill -0 `pgrep -U $(id -u) -x $MUA` 2>/dev/null; then -rn 1 /home/don/bin/deletemailbox -a $account >/dev/null 2>&1; done; fi; + if which notmuch >/dev/null 2>&1; then + nice -n 19 ${IONICE} notmuch new >/dev/null 2>&1; + fi; fi; fi; fi;