summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
8 days-x option fixed, fix #1014HEADmasterLuke Smith
8 daysproperly create imapnotify dirLuke Smith
2025-03-31Fix unary operator expected errorAdrien Czerny
On my system running any `mw` command after a fresh install from the AUR, I get: ``` /usr/bin/mw: line 37: [: 1.5: unary operator expected ``` Now the script doesn't error per-se but it does set the `master` and `slave` variables to wrong values. I'm also not sure how this wasn't raised before; maybe that's a new bash version thing? I'm on 5.2.37. Anyway I faffed around trying to fix this, in particular with the `-gt` operator but it turned out that properly comparing float numbers is a pain in the butt in bash. I found solutions using `bc` which I thought were weird. To keep things simple I ended up doing a little substitution on the dot `.` character and turned these nasty floats into integers, along with using the `-gt` operator which did the trick on my system. May be unorthodox so feedback is more than welcome. Thank you for the great software by the way, lots of gratitude for your work.
2025-03-06Revert "fix #993"Luke Smith
This reverts commit 883e570d6db7ba62febd97598902752a4c28d3ca.
2025-03-06fix #993Luke Smith
2025-03-04more robust mbsync check, close #956Luke Smith
2025-03-04use lmdb if available, close #950Luke Smith
2025-02-28Merge pull request #976 from ivan-boikov/masterLuke Smith
No mailsync with locked GPG key in non-interactive shells
2025-02-28Merge branch 'master' into masterLuke Smith
2025-02-28Merge pull request #1003 from staticssleever668/fix_dash_subjectLuke Smith
fix(mailsync): delimit notification text from flags
2025-02-28Merge branch 'master' into patch-1Luke Smith
2025-02-28Merge pull request #999 from jdujava/fix-multiline-subjectsLuke Smith
Fix notifications for mails with multiline subject
2024-09-18fix(mailsync): delimit notification text from flagsYaroslav Chvanov
Fixes text being interpreted as flags when it starts with a dash. Try sending yourself a letter with subject starting with '-'. E.g. if subject is '-10%' fixes error: > Unknown option -10%
2024-09-02Fix usages of mail/mailsJonas Dujava
Signed-off-by: Jonas Dujava <jonas.dujava@gmail.com>
2024-09-02Fix notifications for mails with multiline subjectJonas Dujava
Signed-off-by: Jonas Dujava <jonas.dujava@gmail.com>
2024-03-18Don't prompt for password, if the email address already has a savedspeedie
password. This is useful if you copy your .password-store directory from one computer to another.
2024-01-13No mailsync with locked GPG key in non-interactive shellsivan-boikov
2023-11-15Fix notify-send not coming throughappeasementPolitik
2023-08-23Merge pull request #958 from jdujava/masterLuke Smith
fix: reorder action
2023-08-11fix: reorder actionJonas Dujava
2023-07-26pipe password directly to passTomáš Faikl (astro)
- also change slightly confusing naming for (re)inserting given passwords to pass store
2023-03-25Add goimapnotify for push notificationsCarlos Lobo
2023-03-01switch msmtp log file to XDG_STATE_HOMEvohoanglong0107
2023-02-18simplification of decoding, show help on nooptLuke Smith
2023-02-16Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizardLuke Smith
2023-02-16bring back ugly but functional cmds to get subjectLuke Smith
fix #910
2023-02-14Merge pull request #908 from Shane-XB-Qian/pr_remove_cron_qLuke Smith
fix: mailsync looks no '-q' parameter or made it fail
2023-02-14fix: displays fallback of default looks should be ':0'shane.xb.qian
// solution: changed from '0:' to ':0' Signed-off-by: shane.xb.qian <shane.qian@foxmail.com>
2023-02-14fix: mailsync looks no '-q' parameter or made it failshane.xb.qian
// solution: remove '-q' Signed-off-by: shane.xb.qian <shane.qian@foxmail.com>
2023-02-13help menu fixLuke Smith
2023-02-13mail notifications back, close #907, fix #095Luke Smith
use MAILSYNC_MUTE variable, and non-silly commands to derive $from and $subject
2023-02-13offline mail cache fix and other tweaksLuke Smith
2023-02-13stupid fix and cli feedbackLuke Smith
2023-02-13continue revisionLuke Smith
2023-02-13use template filesLuke Smith
2023-02-13deprecate -y and -Y, cleanup.Luke Smith
2023-02-13Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizardLuke Smith
2023-02-13simplify mailsync, remove silly option passingLuke Smith
2023-01-30read-in env vars properly if dependent on XDG StandardAlexBocken
2023-01-15Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizardLuke Smith
2023-01-12read xorg displays from unix-domain socket if pgrep returns nullJunicchi
2023-01-05error messagingLuke Smith
2022-11-17fix: make o and O macro work and really sync multiple/individual accountsshane.xb.qian
Signed-off-by: shane.xb.qian <shane.qian@foxmail.com>
2022-11-15parse pop config only when file existsKarel Křemel
2022-10-14escape single quote in box, fix #880Luke Smith
2022-10-07leftover from bugtestingLuke Smith
2022-10-07better muting, suppress no mpop config, tabbingLuke Smith
2022-10-07Merge branch 'nonnotifyoption' of ↵Luke Smith
https://github.com/insanerwayner/mutt-wizard into insanerwayner-nonnotifyoption
2022-09-29Add Support for POP3 NotificationParin Jasoliya
2022-08-18forgot escape on | to get variable; case condition s/no/mute/Wayne Reeves