#!/bin/sh
#
# abmailmv - mv 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" = "" -o "$2" = "" -o "$3" != "" ]; then
  cat <<EOF
usage:
  $ find ~/Mail/inbox -name '[0-9]*' -exec abmailmv -b -g {} {}~ \;
  $ abmailmv -b -g ~/Mail/inbox ~/Mail/inbox-spam
EOF
  exit 1
fi
ismaildir() {
  [ -d "$1/cur" -a -d "$1/tmp" -a -d "$1/new" ]
}
"${ABMAIL_ROOT:-./}abmail" ${ABMAILFLAGS} + "$1" | while read f; do
  case "$f" in
  */new/*[!/]*)
    ismaildir "$2" && mv "$f" "$2"/cur || mv "$f" "$2"
    ;;
  *)
    mv "$f" "$2"
    ;;
  esac
done
