summaryrefslogtreecommitdiff
path: root/bin/mw
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2023-02-16 14:12:40 -0500
committerLuke Smith <luke@lukesmith.xyz>2023-02-16 14:12:40 -0500
commit57e6d292a11600194abd5daea2fca09087624276 (patch)
treee1ad01a75498cdc6ae89a5bfd7ed154e3e75e198 /bin/mw
parent48ac83c07f7f62475400dcec179c0695bd7aba3e (diff)
parent17bb517c391282aa7a384cd713e47ce004680b59 (diff)
Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizard
Diffstat (limited to 'bin/mw')
-rwxr-xr-xbin/mw2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mw b/bin/mw
index 1a0cc2d..44a6566 100755
--- a/bin/mw
+++ b/bin/mw
@@ -217,7 +217,7 @@ togglecron() { cron="$(mktemp)"
sed -ibu /mailsync/d "$cron"; rm -f "$cron"bu
else
echo "Adding automatic mailsync every ${cronmin:-10} minutes..."
- echo "*/${cronmin:-10} * * * * $prefix/bin/mailsync -q" >> "$cron"
+ echo "*/${cronmin:-10} * * * * $prefix/bin/mailsync" >> "$cron"
fi &&
crontab "$cron"; rm -f "$cron" ;}