Skip to content

Commit

Permalink
mail notifications back, close #907, fix #95
Browse files Browse the repository at this point in the history
use MAILSYNC_MUTE variable, and non-silly
commands to derive $from and $subject
  • Loading branch information
LukeSmithxyz committed Feb 14, 2023
1 parent ef816c5 commit f0ae1de
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 21 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ The mutt-wizard runs via the command `mw`. Once setup is complete, you'll use
connecting online at all.
- `-o` -- Configure mutt for an account, but do not keep mail offline.
- `-p` -- Use POP protocol instead of IMAP (requires `mpop` installed).
- `mailsync` gives visual messages of new mail by default. Or, set
`MAILSYNC_MUTE=1` as an environmental variable if you prefer not having them.

## Neomutt user interface

Expand Down
51 changes: 30 additions & 21 deletions bin/mailsync
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,21 @@ lastrun="${XDG_CONFIG_HOME:-$HOME/.config}/mutt/.mailsynclastrun"

# Settings are different for MacOS (Darwin) systems.
case "$(uname)" in
Darwin)
notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
;;
Darwin) notify() { osascript -e "display notification \"$2\" with title \"$1\"" ;} ;;
*)
case "$(readlink -f /sbin/init)" in
*systemd*|*openrc*) export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus ;;
esac
# remember if a display server is running since `ps` doesn't always contain a display
pgrepoutput="$(pgrep -ax X\(\|org\|wayland\))"
displays="$(echo "$pgrepoutput" | grep -wo "[0-9]*:[0-9]\+" | sort -u)"
[ -z "$displays" ] && [ -d /tmp/.X11-unix ] && displays=$(cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; done)
notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-0:}; do
export DISPLAY="$x"
notify-send --app-name="mutt-wizard" "New mail!" "📬 $2 new mail(s) in \`$1\` account."
done ;}
;;
case "$(readlink -f /sbin/init)" in
*systemd*|*openrc*) export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus ;;
esac
# remember if a display server is running since `ps` doesn't always contain a display
pgrepoutput="$(pgrep -ax X\(\|org\|wayland\))"
displays="$(echo "$pgrepoutput" | grep -wo "[0-9]*:[0-9]\+" | sort -u)"
[ -z "$displays" ] && [ -d /tmp/.X11-unix ] && displays=$(cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; done)
notify() { [ -n "$pgrepoutput" ] && for x in ${displays:-0:}; do
export DISPLAY="$x"
notify-send --app-name="mutt-wizard" "$1" "$2"
done ;}
;;
esac
# Check account for new mail. Notify if there is new content.
Expand All @@ -63,10 +61,22 @@ syncandnotify() {
"$HOME/.local/share/mail/$2/"[Ii][Nn][Bb][Oo][Xx]/cur/ \
-type f -newer "$lastrun" 2> /dev/null)
newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l)
case "$newcount" in
0) echo "No new mail for $2." ;;
*) echo "$newcount new mail for $2."
[ -z "$MAILSYNC_MUTE" ] && notify "$2" "$newcount" ;;
case 1 in
$((newcount > 5)) )
echo "$newcount new mail for $2."
[ -z "$MAILSYNC_MUTE" ] && notify "New Mail!" "📬 $newcount new mail(s) in \`$2\` account."
;;
$((newcount > 0)) )
echo "$newcount new mail for $2."
[ -z "$MAILSYNC_MUTE" ] &&
for file in $new; do
# Extract subject and sender from mail.
from="$(sed -n "/^From:/ s/\(.*: \| *<.*\)//g p" "$file")"
subject="$(sed -n "/^Subject:/ s|.*: || p" "$file")"
notify "📧$from:" "$subject"
done
;;
*) echo "No new mail for $2." ;;
esac
}
Expand All @@ -91,7 +101,6 @@ for account in $tosync; do
esac
done
wait
notmuch new --quiet
Expand Down
7 changes: 7 additions & 0 deletions mailsync.1
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ sync all mail accounts and notify user if there is new mail
only sync the
.B [email protected]
account.
.SH CONFIGURATION
While
.B
mailsync
gives notifications on the arrival of new mail by default, this can be diabled by setting the variable
.I
MAILSYNC_MUTE=1.
.SH AUTHORS
Written by Luke Smith <[email protected]> originally in 2018.
.SH LICENSE
Expand Down

0 comments on commit f0ae1de

Please sign in to comment.