# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ # # Author : Georgi Georgiev # # maildir eclass: makes sure a reasonable default for $MAILDIR is set ECLASS="maildir" INHERITED="$INHERITED $ECLASS" maildir_location() { . /etc/rc.conf [ -z "${MAILDIR}" ] && MAILDIR=".maildir" echo $MAILDIR } MAILDIR=`maildir_location`