about summary refs log tree commit diff
path: root/contrib/mpeek
blob: bf568dc0221505e4af23163c12691f8a8c1bff54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# mpeek - wrapper around mscan with a different seq

export MAILSEQ=$HOME/.mblaze/peek.seq

if [ -t 0 ]; then
	mseq "$@"
else
	mseq -S | mscan "$@"
fi