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 6ee764e1a9d83b073114fa88394a70737297cb46
parent 11de21e3c9c327c91de29bf2505ec1e821ff0d51
Author: Jaromil <jaromil@dyne.org>
Date:   Sun, 19 Mar 2017 23:18:21 +0100

fix to avoid recursion on compose command

Diffstat:
Msrc/jaro | 2+-
Msrc/zlibs/email | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/jaro b/src/jaro @@ -586,7 +586,7 @@ main() { case "$subcommand" in - compose) compose ${option_params} + compose) stdin_compose ${option_params} exitcode=$? ;; diff --git a/src/zlibs/email b/src/zlibs/email @@ -21,8 +21,8 @@ # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # extract all emails found in stdin, one per line -compose() { - fn compose $* +stdin_compose() { + fn stdin_compose $* # among the args parse recipient emails and files to attach local _files=()