(
	# IRC settings
	NICK	   => 'TitlerBot',
	ANICK	   => [ '_title__', '__title__'],
	NAME	   => '_titler_',
	CHAN	   => [ '#chan1', '#chan2'],
	SERVER	   => 'irc.irchighway.net',
	PORT	   => 6667,
	NSPASSWD   => 'george',

	# LWP::UserAgent settings
	USERAGENT  => 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6',
	UATIMEOUT  => 10,
	MAXGETSIZE => 4096,

	# Max URLs processed per line
	URL_LIMIT  => 3,

	# Time to live of a URL before it will be re-titled
	TIMETOLIVE => 60,

	# Should print the IRC conversation?
	PRINTCHAT  => 0,

	# URL regex
	REGEX      => qr{\b((?:https?://|www\.)[-~=\/a-zA-Z0-9.:_?&%,#+]+)\b},

	# File to find words to censor
	BADWORDS   => 'naughtywords.txt',
	CENSOR     => '*-*-*',

	# Who to take commands from
	OWNER      => 'BotMaster',
	IGNOREUSER => [ 'george', 'bob' ],

	# Extra !triggers
	TRIGGERS   => {
		help   => [  sub { shift(@_)->say( { channel => shift(@_)->{'channel'}, body => " You rock." } ) }, 'Try me.' ],
	}
);
