# $Id: yaas.cfg.sample,v 1.1.1.1 2005/05/11 00:48:28 hlein Exp $ # # This file is itself perl code; it is merely broken out from # the main script to preserve local settings across upgrades, # ease distribution, etc. $::LOGFILE = '/var/log/messages'; # wherever imap logins go $::MAX_IDLE = 24 * 3600; # expire entries after one day @::SERVICES = qw(smtps); # what services should be wrapped? # List of whitelisted IPs and descriptive tags (no spaces in the tags) %::WHITELIST_IPS = (qw( 10.10.10.33 Example_Host 172.30.20.1 Another_Example )); # Path to tcpwrappers' hosts.allow file $::HOSTS_ALLOW = '/etc/hosts.allow'; $::NEW_ALLOW = $::HOSTS_ALLOW . '.new'; $::OLD_ALLOW = $::HOSTS_ALLOW . '.old'; 1;