13 lines
211 B
Plaintext
13 lines
211 B
Plaintext
|
#!/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
|