diff options
author | EuAndreh <eu@euandre.org> | 2022-11-12 00:53:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-12 00:53:21 -0300 |
commit | 9e65133659eb92c65c730b83d68c81e9d2df4251 (patch) | |
tree | bc0f53ff9737fe7ac6e492bc9463015f42f8536e /bin/m | |
parent | etc/guix/home.scm: Add "icedove" package (diff) | |
download | dotfiles-9e65133659eb92c65c730b83d68c81e9d2df4251.tar.gz dotfiles-9e65133659eb92c65c730b83d68c81e9d2df4251.tar.xz |
Move email, IRC and Atom into Thunderbird
Diffstat (limited to 'bin/m')
-rwxr-xr-x | bin/m | 66 |
1 files changed, 0 insertions, 66 deletions
@@ -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 |