#!/bin/sh # mcom [TO] - compose mail commajoin() { sed ':a;N;s/\n/, /;$!b a' } reffmt() { sed 's/^[^<]*//g;s/[^>]*$//g;s/>[^<]*\n/dev/null | sed 's/^/Message-Id: /' } msgdate() { echo -n "Date: " mdate } MBLAZE=${MBLAZE:-$HOME/.mblaze} sendmail=$(mhdr -h sendmail "$MBLAZE/profile") sendmail_args=$(mhdr -h sendmail-args "$MBLAZE/profile") sendmail="${sendmail:-sendmail} ${sendmail_args:--t}" outbox=$(mhdr -h outbox "$MBLAZE/profile") if [ -z "$outbox" ]; then i=0 while [ -f "snd.$i" ]; do i=$((i+1)) done draft="./snd.$i" draftmime="./snd.$i.mime" else draft="$(true | mdeliver -v -c -XD "$outbox")" if [ -z "$draft" ]; then echo "$0: failed to create draft in outbox $outbox." 1>&2 exit 1 fi draftmime="$(echo $draft | sed 's,\(.*\)/cur/,\1/tmp/mime-,')" fi { case "$0" in *mcom*) echo -n "To: " printf '%s\n' "$@" | commajoin echo "Cc: " echo "Bcc: " echo "Subject: " from=$(mhdr -h local-mailbox "$MBLAZE/profile") [ "$from" ] && echo "From: $from" cat "$MBLAZE/headers" 2>/dev/null msgid msgdate echo echo ;; *mrep*) [ "$#" -eq 0 ] && set -- . ng=$(mhdr -h newsgroups "$1") if [ "$ng" ]; then echo "Newsgroups: $ng" else to=$(mhdr -h reply-to "$1") [ -z "$to" ] && to=$(mhdr -h from "$1") echo "To: $to" echo "Cc: $(mhdr -d -A -h to:cc: "$1" | commajoin)" echo "Bcc: " fi echo "Subject: Re: $(mscan -f '%S' "$1")" from=$(mhdr -h local-mailbox "$MBLAZE/profile") [ "$from" ] && echo "From: $from" cat "$MBLAZE/headers" 2>/dev/null mid=$(mhdr -h message-id "$1") if [ "$mid" ]; then echo -n "References:" { mhdr -h references "$1" printf "%s\n" "$mid" } | reffmt echo "In-Reply-To: $mid" fi msgid msgdate echo mquote "$1" echo esac 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 } >$draft 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 if [ -e $draftmime ]; then if [ $draft -ot $draftmime ]; then if $sendmail <$draftmime; then if [ "$outbox" ]; then mv $draftmime $draft mflag -d $draft else rm $draft $draftmime fi exit 0 else echo "mcom: $sendmail failed, kept draft $draft" exit 2 fi else echo "mcom: re-run mmime first." c= fi else if mmime -c <$draft; then if $sendmail <$draft; then if [ "$outbox" ]; then mflag -d $draft else rm $draft fi exit 0 else echo "mcom: $sendmail failed, kept draft $draft" exit 2 fi else echo "mcom: message needs to be MIME-encoded first." c= fi fi ;; c|cancel) echo "mcom: cancelled draft $draft" exit 1 ;; m|mime) ( IFS=' ' msed '/attach/d' $draft for f in $(mhdr -M -h attach $draft); do echo "#$(file -Lbi $f | sed 's/ //g') $f" done ) | tee /tmp/v | mmime >$draftmime mshow -t $draftmime c= ;; e|edit) c= if ! ${EDITOR:-vi} $draft; then c=c fi ;; d|delete) rm -i $draft if ! [ -f $draft ]; then rm -f $draftmime echo "mcom: deleted draft $draft" exit 0 fi c= ;; *) echo -n "What now? ([s]end, [c]ancel, [d]elete, [e]dit, [m]ime) " read -r c ;; esac done