#!/bin/sh
#
# mess - wrapper of less for MIME messages
#
# Copyright (C) 2006-2008 Taiji Yamada <taiji@aihara.co.jp>
#
# This program is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
case "$LANG" in
ja_JP.UTF-8)	COCO='| nkf -w'	;;
*)		COCO='| nkf'	;;
esac
#LESSOPEN="$COCO %s"
#LESSOPEN="| sed '/^\$/q' %s $COCO"
#LESSOPEN="| sed 's/=?shift-jis?B?/*=?shift_jis?B?/;/^\$/q' %s $COCO"
LESSOPEN="| sed 's/=?shift-jis?B?/*=?shift_jis?B?/;48q' %s $COCO"
export LESSOPEN
exec less -c -e "$@"
