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 5bcaa0d3e80c7cb6c96931e6309f80d73d394a31
parent 24bb6d9f782979f2c024a02581288eefc633593e
Author: Jaromil <jaromil@dyne.org>
Date:   Wed, 13 May 2015 12:12:00 +0200

off-by-one in email parsing from stdin

Diffstat:
Msrc/zlibs/parse | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/zlibs/parse b/src/zlibs/parse @@ -108,7 +108,7 @@ extract_stdin() { # is an email or stream of emails _headers=`print - $_in | awk ' -BEGIN { header=0 } +BEGIN { header=1 } /JAROMAIL_PIPE_SEPARATOR/ { header=1; next } /^$/ { header=0; print "\n" } { if(header==1) { print $0 } } @@ -120,14 +120,15 @@ BEGIN { header=0 } for h in ${(f)_headers}; do - [[ "${h[(w)1]}" = "Date:" ]] && _nextline=1 - [[ $_nextline = 1 ]] && _gotit+="$h\n" + [[ "${h[(w)1]}" = "From:" ]] && _nextline=1 [[ "${h[(w)1]}" = "Subject:" ]] && { _nextline=0 print - ${_gotit} | e_parse _gotit="" } + [[ $_nextline = 1 ]] && _gotit+="$h\n" + done for i in ${(k)e_addr}; do