cruxports/mblaze/mailshow

13 lines
211 B
Plaintext
Raw Normal View History

2022-02-05 15:39:19 -05:00
#!/bin/sh
# Description: Show contents of a Maildir message in pager
#
# Dependencies: mblaze
#
# Shell: POSIX compliant
# Author: John McQuah
if [ -f "$1" ]; then
mshow -n -A 'text/html' ./"$1" | less
fi