Browse Source

same default ~/Mail as Mutt

pull/276/head
Roland Puntaier 5 years ago
parent
commit
79f78a12b9
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      README.md
  2. +1
    -1
      bin/mailsync

+ 2
- 2
README.md View File

@@ -59,7 +59,7 @@ If you get errors in `neomutt`, install the most recent version manually or manu
- `w3m` - view HTML email and images in neomutt.
- `notmuch` - index and search mail.
Install it and run `notmuch setup`.
Tell it where your mail is (`$MAILDIR` or `~/.local/share/mail/`).
Tell it where your mail is (`$MAILDIR` or `~/Mail`).
Although, `mw` will do this automatically, if you haven't set notmuch up before.
You can run it in mutt with `ctrl-f`.
Run `notmuch new` to process new mail.
@@ -108,7 +108,7 @@ To give you an example of the interface, here's an idea:
Image/video/pdf attachments without relying on the neomutt instance.
- abook integration by default.
- The messy template files and other directories have been moved or removed, leaving a clean config folder.
- msmtp configs moved to `~/.config/` and mail default location moved to `~/.local/share/mail/`, reducing mess in `~`.
- msmtp configs moved to `~/.config/` and mail default location moved to `~/Mail`, reducing mess in `~`.
- `pass` is used as a password manager instead of separately saving passwords.
- Script is POSIX sh compliant.
- Error handling for the many people who don't read or follow directions.


+ 1
- 1
bin/mailsync View File

@@ -13,7 +13,7 @@ if [[ -z $PASSWORD_STORE_DIR ]]; then
[ -d "$HOME/.local/share/password-store" ] && export PASSWORD_STORE_DIR="$HOME/.local/share/password-store"
fi
configdir=${XDG_CONFIG_HOME:-$HOME/.config}
maildir="${MAILDIR:-$HOME/mail}"
maildir="${MAILDIR:-$HOME/Mail}"
lastrun=${XDG_CACHE_HOME:-$HOME/.cache}/.mailsynclastrun
if [[ -f $configdir/isync/mbsyncrc ]]; then
mbsyncrc="$configdir/isync/mbsyncrc"


Loading…
Cancel
Save