aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mbsync/.local/bin/maildir-notify
blob: 61b8d4074bd6ea623b70ffea3cac724c4acdd9df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

if [ $# = 0 ]; then
	set -- "$MAIL"
fi

for i; do
	set -- "$@" "${i}/new"
	shift
done

inotifywait --monitor --event create --event moved_to "$@" |
	while read -r dir _action file; do
		catagory="$(dirname "$dir" | xargs dirname | xargs basename)"
		from="$(grep -m1 -oP '(?<=^From: ).*' "${dir}${file}")"
		subject="$(grep -m1 -oP '(?<=^Subject: ).*' "${dir}${file}")"

		echo "Catagory: $catagory, From: $from, Subject: $subject"
		notify-send -a "Mail" -c "$catagory" "From: $from" "$subject"
	done