diff options
author | Luke Smith <Luke Smith> | 2022-07-01 09:48:15 -0400 |
---|---|---|
committer | Luke Smith <Luke Smith> | 2022-07-01 09:48:15 -0400 |
commit | 9db5d1b4fc2bdc3d541016b7750f64eaa2afac51 (patch) | |
tree | c5a16178d7cd250f5642aea25fda0b357ff32615 /bin/mw | |
parent | ef5bac2b55e3bd665d103eff4ea435ecaa9db22c (diff) | |
parent | 367c10ec3f16c3c11e1a5de980bc95dd4fa6bf79 (diff) |
Merge branch 'master' of https://github.com/wrigleyster/mutt-wizard into wrigleyster-master
Diffstat (limited to 'bin/mw')
-rwxr-xr-x | bin/mw | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -262,7 +262,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" >> "$cron" + echo "*/${cronmin:-10} * * * * $prefix/bin/mailsync -q" >> "$cron" fi && crontab "$cron"; rm -f "$cron" ;} |