#!/bin/sh
#
# abmailcat - cat only abmail files
#
# 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.
#
ABMAILFLAGS=""
while true; do
  case "$1" in
  -?*) ABMAILFLAGS="${ABMAILFLAGS} $1";;
  *) break;;
  esac
  shift
done
if [ "$1" = "" ]; then
  cat <<EOF
usage:
  $ find ~/Mail/inbox -name '[0-9]*' -exec abmailcat -b -g {} \; | less
  $ abmailcat -b -g ~/Mail/inbox | less
EOF
  exit 1
fi
"${ABMAIL_ROOT:-./}abmail" ${ABMAILFLAGS} + "$@" | while read f; do
  cat "$f"
done
