Skip to content

Commit

Permalink
mcom: ensure no empty header lines are generated in mrep
Browse files Browse the repository at this point in the history
  • Loading branch information
leahneukirchen committed Mar 2, 2018
1 parent 35c1168 commit f83a6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcom
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ fi
printf 'Cc: %s\n' \
"$(mhdr -d -A -h to:cc: "$1" |notmine |commajoin)"
printf 'Bcc: \n'
printf '%s\n' "$hdrs" | awk '{ print }'
printf '%s\n' "$hdrs" | awk '/./ { print }'
fi
printf 'Subject: Re: %s\n' "$(COLUMNS=10000 mscan -f '%S' "$1")"
from=$(mhdr -h local-mailbox "$MBLAZE/profile")
Expand Down

0 comments on commit f83a6fe

Please sign in to comment.