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 9db09bfdce5a1ccdba12a7ad6d52a8b7f8270293
parent f59b6ddb7d28db083504a0dd9b883dd4ab568370
Author: Jaromil <jaromil@dyne.org>
Date:   Sun, 25 Jan 2015 17:23:30 +0100

updates for release

Diffstat:
MChangeLog.md | 11+++++++++++
MREADME.md | 2+-
Mdoc/jaromail-manual.org | 2+-
Mdoc/jaromail-manual.pdf | 0
Mdoc/jaromail-manual.tex | 6+++---
Msrc/jaro | 4++--
6 files changed, 18 insertions(+), 7 deletions(-)

diff --git a/ChangeLog.md b/ChangeLog.md @@ -1,5 +1,16 @@ # JaroMail ChangeLog +## 3.2 +## 25 Jan 2015 + +New ZSh completion extension, now capable of tab-completion for +addresses, maildirs and even remote imap folders. Included +emlx2maildir script in extras, to import Apple/OSX mail storage into +maildirs. New exclude config directive for accounts, to exclude +fetching certain remote imap folders. Fixes to vcard extraction and +import, filtering to priv folder and gpg email encryption. Updates to +manual and commandline documentation. + ## 3.1 ### 16 Jan 2015 diff --git a/README.md b/README.md @@ -10,7 +10,7 @@ *A commandline tool to easily and privately handle your e-mail* -Version: **3.1** +Version: **3.2** Updates on: http://dyne.org/software/jaro-mail diff --git a/doc/jaromail-manual.org b/doc/jaromail-manual.org @@ -1,4 +1,4 @@ -#+TITLE: Jaro Mail 3.1 +#+TITLE: Jaro Mail 3.2 #+AUTHOR: by Jaromil @ dyne.org #+DATE: Jan 2015 diff --git a/doc/jaromail-manual.pdf b/doc/jaromail-manual.pdf Binary files differ. diff --git a/doc/jaromail-manual.tex b/doc/jaromail-manual.tex @@ -1,4 +1,4 @@ -% Created 2015-01-17 za 13:34 +% Created 2015-01-25 Sun 17:22 \documentclass[a4,onecolumn,portrait]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} @@ -36,7 +36,7 @@ \pagestyle{fancyplain} \author{by Jaromil @ dyne.org} \date{Jan 2015} -\title{Jaro Mail 3.1} +\title{Jaro Mail 3.2} \hypersetup{ pdfkeywords={}, pdfsubject={}, @@ -626,7 +626,7 @@ Command & Arguments & Function (print on stdout, import from stdin)\\ \textbf{extract} & gpg keyring & print address list of gpg public keyring\\ \textbf{extract} & gpg pubkey & print address list of gpg key signatures\\ \textbf{extract} & vcard file & print address list of entries in VCard file\\ -\textbf{vcard} & & print VCard from address list on stdin\\ +\textbf{vcard} & vcard file & export the addressbook into a VCard file\\ \textbf{import} & -l listname & import address list from stdin to addressbook\\ \textbf{import} & filename & import address list into an address list file\\ \textbf{search addr} & (-l) string & print address list of matches in addressbook\\ diff --git a/src/jaro b/src/jaro @@ -20,7 +20,7 @@ # this source code; if not, write to: # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -VERSION=3.1 +VERSION=3.2 DATE=Jan/2015 JAROMAILEXEC=$0 typeset -a OLDARGS @@ -770,7 +770,7 @@ main() { exitcode=$? ;; - edit|vim) edit_file ${PARAM} ;; + edit|vim) jarovim ${PARAM} ;; open) open_folder ${PARAM} ;; preview) preview_file ${PARAM} ;;