From 12c4eca344c1d9b36fadac6939db616927bce526 Mon Sep 17 00:00:00 2001 From: Kriss Date: Fri, 19 Mar 2021 10:29:19 +0100 Subject: [PATCH] [togglecron] repair removing `sed` I must have accidentally removed the comment (which is needed for removal of the section from the crontab file) before committing. --- bin/mw | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/mw b/bin/mw index 95c04b7..c35f1f7 100755 --- a/bin/mw +++ b/bin/mw @@ -224,7 +224,8 @@ getboxes() { if [ -n "${force+x}" ] ; then else info="$(curl --location-trusted -s -m 5 --user "$login:$(pass "$fulladdr")" --url "${protocol:-imaps}://$imap:${iport:-993}")" [ -z "$info" ] && echo "Log-on not successful." && return 1 - mailboxes="$(echo "$info" | grep -v HasChildren | sed "s/.*\" //;s/\"//g" | tr -d ' ')" + mailboxes="$(echo "$info" | grep -v HasChildren | sed "s/.*\" //;s/\"//g" | tr -d ' +')" fi [ "$type" = "pop" ] && mailboxes="INBOX" getaccounts; for x in $(seq 1 9); do echo "$accounts" | grep -q "^$x:" || { export idnum="$x"; break ;}; done @@ -275,6 +276,7 @@ togglecron() { cron="$(mktemp)" else echo "Adding automatic mailsync every ${cronmin:-10} minutes..." cat <>"$cron" +# mailsync MBSYNCRC=${MBSYNCRC:-$HOME/.mbsynrc} NOTMUCH_CONFIG=${NOTMUCH_CONFIG:-$HOME/.notmuch-config} GNUPGHOME=${GNUPGHOME:-$HOME/.gnupg}