#!/bin/sh # mcom [TO] - compose mail NL=' ' commajoin() { awk 'NR==1 {l=$0; next} {l=l", "$0} END {print l}' } notmine() { mine="$(maddr -a -h local-mailbox:alternate-mailboxes: $MBLAZE/profile)" grep -Fv -e "$mine" } ouniq() { awk '!seen[$0]++' } reffmt() { sed 's/^[^<]*//g;s/[^>]*$//g;s/>[^<]*\ /dev/null | sed 's/^/Message-Id: /' } stampdate() { if ! mhdr -h date "$1" >/dev/null; then tmp=$(mktemp -t mcom.XXXXXX) { printf 'Date: ' mdate cat "$1" } >"$tmp" && mv "$tmp" "$1" fi } stripempty() { tmp=$(mktemp -t mcom.XXXXXX) msed 's/^[ \t]*$//d' "$1" >"$tmp" mv "$tmp" "$1" } needs_multipart() { mhdr -h attach "$1" >/dev/null || grep -q '^#[^ ]*/[^ ]* ' "$1" } do_mime() { if needs_multipart "$draft"; then ( IFS=$NL msed '/attach/d' $draft for f in $(mhdr -M -h attach $draft); do printf '#%s %s\n' \ "$(file -Lbi $f | sed 's/ //g')" \ "$f" done ) | mmime >$draftmime else mmime -r <"$draft" >"$draftmime" fi } MBLAZE=${MBLAZE:-$HOME/.mblaze} sendmail=$(mhdr -h sendmail "$MBLAZE/profile") sendmail_args=$(mhdr -h sendmail-args "$MBLAZE/profile") sendmail="${sendmail:-sendmail} ${sendmail_args:--t}" default_from=$(mhdr -h local-mailbox "$MBLAZE/profile") hdrs= resume= case "$0" in *mcom*) hdr=to while [ $# -gt 0 ]; do case "$1" in --) # -- is like -to, really shift hdr=to ;; -r) shift resume=1 if [ "$#" -gt 0 ]; then echo "used draft $1" draft="$1" shift fi ;; -??*) hdr=${1#-} shift;; [!-]*) hdrs="$hdrs$NL$(printf '%s: %s\n' "${hdr}" "$1")" shift;; *) printf 'mcom: invalid argument %s\n' "$1" 1>&2 exit 1;; esac done ;; *mfwd*) hdr= raw= while [ $# -gt 0 ]; do case "$1" in --) shift break;; -r) shift raw=1;; -??*) hdr=${1#-} shift;; [!-]*) [ -z "$hdr" ] && break hdrs="$hdrs$NL$(printf '%s: %s\n' "${hdr}" "$1")" shift;; *) printf 'mfwd: invalid argument %s\n' "$1" 1>&2 exit 1;; esac done [ "$#" -eq 0 ] && set -- . ;; *mbnc*) hdr= while [ $# -gt 0 ]; do case "$1" in --) shift break;; -??*) hdr=${1#-} shift;; [!-]*) [ -z "$hdr" ] && break hdrs="$hdrs$NL$(printf '%s: %s\n' "${hdr}" "$1")" shift;; *) printf 'mbnc: invalid argument %s\n' "$1" 1>&2 exit 1;; esac done [ "$#" -eq 0 ] && set -- . ;; *mrep*) hdr= while [ $# -gt 0 ]; do case "$1" in --) shift break;; -??*) hdr=${1#-} shift;; [!-]*) [ -z "$hdr" ] && break hdrs="$hdrs$NL$(printf '%s: %s\n' "${hdr}" "$1")" shift;; *) printf 'mrep: invalid argument %s\n' "$1" 1>&2 exit 1;; esac done [ "$#" -eq 0 ] && set -- . ;; esac hdrs="$(printf '%s\n' "${hdrs#$NL}" | mhdr /dev/stdin)" outbox=$(mhdr -h outbox "$MBLAZE/profile") if [ -z "$outbox" ]; then if [ -z "$resume" ]; then i=0 while [ -f "snd.$i" ]; do i=$((i+1)) done draft="./snd.$i" elif [ -z "$draft" ]; then draft=$(ls -1t ./snd.*[0-9] | sed 1q) fi draftmime="$draft.mime" else if [ -z "$resume" ]; then draft="$(true | mdeliver -v -c -XD "$outbox")" if [ -z "$draft" ]; then printf '%s\n' "$0: failed to create draft in outbox $outbox." 1>&2 exit 1 fi elif [ -z "$draft" ]; then draft=$(mlist -D "$outbox" | msort -r -M | sed 1q) fi draftmime="$(printf '%s\n' "$draft" | sed 's,\(.*\)/cur/,\1/tmp/mime-,')" fi [ -z "$resume" ] && { case "$0" in *mcom*) { printf '%s' "$hdrs" | mhdr -M -h to /dev/stdin | commajoin | sed 's/^/To: /' printf '%s' "$hdrs" | mhdr -M -h cc /dev/stdin | commajoin | sed 's/^/Cc: /' 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; /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' ( IFS=$NL cat -- /dev/null $(printf '%s' "$hdrs" | mhdr -M -h body /dev/stdin) ) printf '\n' ;; *mfwd*) { printf '%s' "$hdrs" | mhdr -M -h to /dev/stdin | commajoin | sed 's/^/To: /' printf '%s' "$hdrs" | mhdr -M -h cc /dev/stdin | commajoin | sed 's/^/Cc: /' printf '%s' "$hdrs" | mhdr -M -h bcc /dev/stdin | commajoin | sed 's/^/Bcc: /' COLUMNS=10000 mscan -f 'Subject: [%f] %s' "$@" 2>/dev/null | sed 1q printf '%s\n' "$hdrs" | awk '{ print }' | msed "/to/d; /cc/d; /bcc/d" /dev/stdin } | msed "/cc/a//; /bcc/a//; /from/a/$default_from/" /dev/stdin | sed '/^$/d' msgid museragent cat "$MBLAZE/headers" 2>/dev/null printf '\n\n' if [ -z "$raw" ]; then mseq -r "$@" | sed 's:^:#message/rfc822#inline :; s:$:>:' else ( SEP=----- IFS=$NL for f in $(mseq -r "$@"); do printf '%s Forwarded message from %s %s\n\n' \ $SEP "$(mhdr -d -h from "$f")" $SEP DISPLAY= mshow -n -N "$f" /dev/null printf '\n' mquote "$1" printf '\n' ( IFS=$NL cat -- /dev/null $(printf '%s' "$hdrs" | mhdr -M -h body /dev/stdin) ) printf '\n' ;; esac case "$0" in *mbnc*) ;; *) if [ -f "$MBLAZE/signature" ]; then SIGNATURE="$MBLAZE/signature" elif [ -f ~/.signature ]; then SIGNATURE="$HOME/.signature" fi if [ -n "$SIGNATURE" ]; then printf '%s\n' '-- ' cat "$SIGNATURE" fi esac } >$draft automime= c=e while :; do case "$c" in s|send) case "$(mhdr -h newsgroups "$draft")" in *gmane.*) sendmail="mblow -s news.gmane.org";; *.*) sendmail="mblow";; esac resent="$(maddr -h resent-to "$draft")" case "$resent" in ?*) sendmail=$(mhdr -h sendmail "$MBLAZE/profile") sendmail="${sendmail:-sendmail} -- $resent" ;; esac if [ -e $draftmime ]; then if [ $draft -ot $draftmime ] || [ "$automime" -eq 1 ]; then stampdate $draftmime if $sendmail <$draftmime; then if [ "$outbox" ]; then mv $draftmime $draft mflag -d -S $draft else rm $draft $draftmime fi else printf '%s\n' "mcom: $sendmail failed, kept draft $draft" exit 2 fi else printf 'mcom: re-run mmime first.\n' c= fi else if mmime -c <$draft; then stampdate $draft if $sendmail <$draft; then if [ "$outbox" ]; then mflag -d -S $draft else rm $draft fi else printf '%s\n' "mcom: $sendmail failed, kept draft $draft" exit 2 fi else printf '%s\n' "mcom: message needs to be MIME-encoded first." c= fi fi case "$0" in *mrep*) mflag -R -- "$1" ;; *mbnc*) mflag -P -- "$1" ;; *mfwd*) mflag -P -- "$@" ;; esac exit 0 ;; c|cancel) stampdate $draft printf '%s\n' "mcom: cancelled draft $draft" exit 1 ;; m|mime) do_mime mshow -t $draftmime c= ;; e|edit) c= if ! ${EDITOR:-vi} $draft; then c=c fi stripempty $draft if mmime -c <$draft && ! needs_multipart $draft; then automime= else automime=1 do_mime fi ;; d|delete) rm -i $draft if ! [ -f $draft ]; then rm -f $draftmime printf '%s\n' "mcom: deleted draft $draft" exit 0 fi c= ;; sign) msign $draft >$draftmime mshow -t $draftmime c= ;; encrypt) mencrypt $draft >$draftmime mshow -t $draftmime c= ;; show) if [ -e $draftmime ]; then mshow "$draftmime" else mshow "$draft" fi c= ;; *) printf 'What now? (%s[s]end, [c]ancel, [d]elete, [e]dit, [m]ime, sign, encrypt) ' "${automime:+mime and }" read -r c ;; esac done