aboutsummaryrefslogtreecommitdiff
path: root/bin/m
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-11-24 18:38:27 -0300
committerEuAndreh <eu@euandre.org>2022-11-24 18:38:27 -0300
commit66e057a4ed2d1f33c5e02cc8f6f2cc36137ba53d (patch)
tree28ffeb60a996bf313c830d79b44d62d03d7de472 /bin/m
parentetc/guix/home.scm: Use patched "mailutils-sendmail" package (diff)
downloaddotfiles-66e057a4ed2d1f33c5e02cc8f6f2cc36137ba53d.tar.gz
dotfiles-66e057a4ed2d1f33c5e02cc8f6f2cc36137ba53d.tar.xz
Revert "Revert "Move email, IRC and Atom into Thunderbird""
This reverts commit 3dcbe37baab74e089dee6f93d74a8824f5591478. The Postfix local server is still a bit janky and being worked on, now can be used to replace the previous email toolchain.
Diffstat (limited to 'bin/m')
-rwxr-xr-xbin/m66
1 files changed, 0 insertions, 66 deletions
diff --git a/bin/m b/bin/m
deleted file mode 100755
index 6891128..0000000
--- a/bin/m
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/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