jaromail

a commandline tool to easily and privately handle your e-mail
git clone git://parazyd.org/jaromail.git
Log | Files | Refs | Submodules | README

commit 95d073cbd220a586e9271e5a08cd8a0e4e69b64a
parent 901117c0295bfc3f971e56af71bfdb7bd2324367
Author: Jaromil <jaromil@dyne.org>
Date:   Sun, 19 Mar 2017 13:07:01 +0100

release notes and deps updates

Diffstat:
MChangeLog.md | 10++++++++++
MREADME.md | 2+-
Mbuild/build-gnu.sh | 2+-
Msrc/jaro | 8++++----
4 files changed, 16 insertions(+), 6 deletions(-)

diff --git a/ChangeLog.md b/ChangeLog.md @@ -1,5 +1,15 @@ # JaroMail ChangeLog +## 4.3 +## 19 Mar 2017 + +Switch notmuch support to use mutt-kz instead of alot, detected at +runtime. Fixes to password security and support for pass as password +store. Better cli operation without mutt and new zaw based completion +facility, initial support for vcal files, consolidated addressbook +operations. + + ## 4.2 ## 14 Apr 2016 diff --git a/README.md b/README.md @@ -79,7 +79,7 @@ will be stored, by default it is `$HOME/Mail`. The dependencies to be installed on the system for Jaro Mail are * build: `make gcc libglib2.0-dev libgnome-keyring-dev libxapian-dev libgmime-2.6-dev libtalloc-dev zlib1g-dev libgpgme11-dev` -* run: `fetchmail msmtp mutt notmuch pinentry-curses abook wipe alot` +* run: `fetchmail msmtp mutt-kz notmuch pinentry-curses abook wipe` Keep in mind **you need to read the Manual**: this software is not graphical, it is not meant to be intuitive, does not contains diff --git a/build/build-gnu.sh b/build/build-gnu.sh @@ -32,7 +32,7 @@ debian_req() { test "$target" = "all" } && { case $distro in debian) - deps=(fetchmail msmtp mutt pinentry-curses) + deps=(fetchmail msmtp mutt-kz pinentry-curses) deps+=(wipe notmuch sqlite3 abook elinks) deps+=(gcc make libglib2.0-dev) diff --git a/src/jaro b/src/jaro @@ -773,7 +773,7 @@ main() { ;; edit|vim) edit_file ${PARAM} ;; - open) open_folder ${PARAM} ;; + open) x_mutt -f ${PARAM} ;; preview) preview_file ${PARAM} ;; mkdir) @@ -955,10 +955,10 @@ EOF # or a directory of file elif maildircheck "$subcommand"; then # is it a maildir? then open - open_folder "$subcommand" + x_mutt -f "$subcommand" exitcode=$? elif maildircheck "$MAILDIRS/$subcommand"; then - open_folder "$MAILDIRS/$subcommand" + x_mutt -f "$MAILDIRS/$subcommand" exitcode=$? elif [[ -f "$subcommand" ]]; then # is it a regular file? then ;attach it @@ -966,7 +966,7 @@ EOF exitcode=0 else # just open; mutt on first unread folder - open_folder + x_mutt exitcode=$? fi