summaryrefslogtreecommitdiff
path: root/mutt-wizard.sh
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-03-16 12:16:46 -0700
committerLuke Smith <luke@lukesmith.xyz>2018-03-16 12:16:46 -0700
commit0a4b4674a5a61ec7a227cee6aa69ad52c7f7acc8 (patch)
treec77789d7d36522258ae43beb6da16009ea38528c /mutt-wizard.sh
parent17b880131630de5686e126d528b80832843b7edc (diff)
silly echo removed
Diffstat (limited to 'mutt-wizard.sh')
-rwxr-xr-xmutt-wizard.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh
index 7d8325a..5a1e001 100755
--- a/mutt-wizard.sh
+++ b/mutt-wizard.sh
@@ -13,7 +13,7 @@ createMailboxes() { rm -f "$muttdir"autoconf/log
offlineimap --info -a $1 2&> "$muttdir"autoconf/log
for box in $(sed -n '/^Folderlist/,/^Folderlist/p' "$muttdir"autoconf/log |
grep "^ " | awk '{print $1}' | sed -e 's/\//./g')
- do mkdir -p $HOME/.mail/$1/$box; echo mkdir -p $HOME/.mail/$1/$box; done ;}
+ do mkdir -p $HOME/.mail/$1/$box; done ;}
chooseSync() { (crontab -l && testSync) || dialog --msgbox "No cronjob manager detected. Please install one and return to enable automatic mailsyncing" 10 60 ;}
testSync() { (crontab -l | grep .config/mutt/etc/mailsync && removeSync) || addSync ;}