From 64da4ff0fa4ad00c6330732394251c88d2fd90ce Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 10 Mar 2018 22:28:41 +0100 Subject: mcom: add -body to prepopulate drafts --- mcom | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'mcom') diff --git a/mcom b/mcom index eb965b3..4f8f4f6 100755 --- a/mcom +++ b/mcom @@ -211,12 +211,17 @@ fi printf '%s' "$hdrs" | mhdr -M -h bcc /dev/stdin | commajoin | sed 's/^/Bcc: /' printf '%s\n' "$hdrs" | awk '{ print }' | - msed "/to/d; /cc/d; /bcc/d" /dev/stdin + msed "/to/d; /cc/d; /bcc/d; /body/d" /dev/stdin } | msed "/cc/a//; /bcc/a//; /subject/a//; /from/a/$default_from/" /dev/stdin | sed '/^$/d' msgid museragent cat "$MBLAZE/headers" 2>/dev/null - printf '\n\n' + printf '\n' + ( + IFS=$NL + cat -- /dev/null $(printf '%s' "$hdrs" | mhdr -M -h body /dev/stdin) + ) + printf '\n' ;; *mfwd*) { @@ -277,8 +282,9 @@ fi printf 'Cc: %s\n' \ "$(mhdr -d -A -h to:cc: "$1" |notmine |commajoin)" printf 'Bcc: \n' - printf '%s\n' "$hdrs" | awk '/./ { print }' - fi + printf '%s\n' "$hdrs" | awk '{ print }' | + msed "/body/d" /dev/stdin + fi | sed '/^$/d' printf 'Subject: Re: %s\n' "$(COLUMNS=10000 mscan -f '%S' "$1")" from=$(mhdr -h local-mailbox "$MBLAZE/profile") [ "$from" ] && printf 'From: %s\n' "$from" @@ -298,6 +304,11 @@ fi mquote "$1" printf '\n' + ( + IFS=$NL + cat -- /dev/null $(printf '%s' "$hdrs" | mhdr -M -h body /dev/stdin) + ) + printf '\n' ;; esac -- cgit 1.4.1