#!/bin/sh
#
# Test that the %(mymbox) function correctly determines whether or not
# a particular email address is "mine" or not
#

if test -z "${MH_OBJ_DIR}"; then
    srcdir=`dirname "$0"`/../..
    MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR
fi

. "$MH_OBJ_DIR/test/common.sh"

setup_test

user=${LOGNAME:-`id -un`}
host=`${MH_OBJ_DIR}/test/getfqdn`

run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}" \
         1 "Basic user test"
run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}@${host}" \
         1 "Basic user@host test"
run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) nosuchuser@nosuchhost.blah" \
         0 "Basic non-matching test"

myname="Random User <random@user.something.com>"

echo "Local-Mailbox: ${myname}" >> ${MH}

run_test "echo `${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \
         1 "Local-Mailbox test"

run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}@${host}" \
         0 "Local-mailbox overriding user@host test"

exit $failed
