
#-----------------------------------------------------------------------
# CHANGES
#-----------------------------------------------------------------------
#
# 2000-10-26  Jean-Sebastien Morisset <jsmoriss@jsm-mv.dyndns.org>
#             Added the "#m# 23" module config. This module's option
#             will only appear when running in strict or paranoid mode.
# 2000-10-14  Jean-Sebastien Morisset <jsmoriss@jsm-mv.dyndns.org>
#             Initial module written for v5.0.
#
#-----------------------------------------------------------------------
# MODULE CONFIGURATION
#-----------------------------------------------------------------------
#
#m# 23
#a# accept
#i# cluster novirtual
#n# telnet
#t# servers
#
#   |--------------------------------------------------------------------|
#d# Allow outgoing telnet to these hosts/networks. By default, telnet is
#d# denied since passwords are sent in 'clear text'.
#   |--------------------------------------------------------------------|
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

for host in `Option_Value accept $INTOPT telnet servers`
do
	Hostports accept remote tcp "Telnet" $host telnet
done
unset host

