#
# ident: class definition of IDENT authentication control
#	      (This feature is only for sendmail 8.6+2.xW)
#

REVISION_ID='@(#)ident	3.4 (motonori/WIDE) 2/26/94'

#|# IDENT protocol peers (only with sendmail 8.6+2.xW)
#|#IDENT_PEERS=

if [ "$IDENT_PEERS" ]
then

	if [ "$REVISION_ID_LIST" ]
	then
		REVISION_ID_LIST="$REVISION_ID_LIST\\
# $REVISION_ID"
	else
		REVISION_ID_LIST="# $REVISION_ID"
	fi

case "$IDENT_PEERS" in
/*)     # file definition
        IDENTPEERS="Fi$IDENT_PEERS" ;;
"") ;;
*)      # definition in .cf
	exec << EoF
$IDENT_PEERS
EoF
	IDENTPEERS=`sed 's/^/Ci /'` ;;
esac

IDENTPEERS='# IDENT protocol peers\
'"$IDENTPEERS"

fi
