aboutsummaryrefslogtreecommitdiff
path: root/bin/m
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-11-12 16:05:32 -0300
committerEuAndreh <eu@euandre.org>2022-11-12 16:05:32 -0300
commit3dcbe37baab74e089dee6f93d74a8824f5591478 (patch)
tree64a8fc3d24b246c5d2018feda924d0f106e147cb /bin/m
parentbin/bins: Add -F option (diff)
downloaddotfiles-3dcbe37baab74e089dee6f93d74a8824f5591478.tar.gz
dotfiles-3dcbe37baab74e089dee6f93d74a8824f5591478.tar.xz
Revert "Move email, IRC and Atom into Thunderbird"
This reverts commit 9e65133659eb92c65c730b83d68c81e9d2df4251. I'm still using msmtpq for git-send-email. So I'll have to work that out before removing *all* email configuration.
Diffstat (limited to 'bin/m')
-rwxr-xr-xbin/m66
1 files changed, 66 insertions, 0 deletions
diff --git a/bin/m b/bin/m
new file mode 100755
index 0000000..6891128
--- /dev/null
+++ b/bin/m
@@ -0,0 +1,66 @@
+#!/bin/sh
+set -eu
+
+usage() {
+ cat <<-'EOF'
+ Usage:
+ m
+ m -h
+ EOF
+}
+
+help() {
+ cat <<-'EOF'
+
+ Options:
+ -h, --help show this message
+
+
+ Fetch email via IMAP and update the notmuch index.
+
+
+ Examples:
+
+ Just fetch email
+
+ $ m
+ EOF
+}
+
+
+for flag in "$@"; do
+ case "$flag" in
+ --)
+ break
+ ;;
+ --help)
+ usage
+ help
+ exit
+ ;;
+ *)
+ ;;
+ esac
+done
+
+while getopts 'h' flag; do
+ case "$flag" in
+ h)
+ usage
+ help
+ exit
+ ;;
+ *)
+ usage >&2
+ exit 2
+ ;;
+ esac
+done
+shift $((OPTIND - 1))
+
+
+F="${XDG_DATA_HOME:-$HOME/.local/share}"/euandreh/mailcfg-accounts.txt
+
+notmuch new
+xargs -I% -P "$(wc -l < "$F")" mbsync '%' < "$F"
+notmuch new