💾 Archived View for dots.omarpolo.com › bin › mquote.gmi captured on 2023-09-28 at 15:46:04. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

mquote

mquote - format MSG as a quotation.

This is a tweaked copy of mquote from mblaze that adds the date of the original message.

#!/bin/sh

Extract the sender

: ${from:=$(mhdr -d -h x-original-from "$1")}
: ${from:=$(mhdr -d -h from "$1")}
: ${from:=Someone}

and the date

pfmt="%a, %d %b %Y %H:%M:%S %z"
: ${date:=$(mhdr -d -h date "$1")}
date="${date:+$(dateconv -f "$pfmt" "$date")}"

printf '%s%s wrote:\n' "${date:+On $date, }" "$from"

Then strip the signature, empty lines and prefix everything with ">"

{ mshow -R "$1" || mshow -h '' -N "$1"; } |
	sed -n '/^-- $/,$!p'   |
	sed -e :a -e '/^\n*$/{$d;N;ba' -e '}' |
	sed 's/^/> /'