__section__
default
__description__
Set RSS items to display to users banned either for
RSS abuse ('abuse') or by IPID/SubnetID ('ban').

* type = 'abuse' or 'ban'
* items = data structure to modify, for use by Perl
* srcid_ip = user's IP's srcid

__title__

__page__
misc
__lang__
en_US
__name__
bannedtext_rss
__template__
[% SWITCH type;
	CASE 'abuse';
	items.push({
		title       => "Why Do I Not Get the Latest Stories in RSS?",
		link        => gSkin.absolutedir _ "/faq.shtml",
                description => "Your RSS reader is abusing the " _ constants.sitename _ " server. You are requesting pages more often than our terms of service allow. Please see the FAQ for more information, or email " _ constants.adminmail_ban _ " with your srcid:" _ srcid_ip _ "."
	});

	CASE 'ban';
	items.push({
		title       => "Why is My IP Banned?",
		link        => gSkin.absolutedir _ "/faq.shtml",
		description => "Perhaps your IP was used to abuse the web site or perform a DoS attack, or you share a proxy server with someone who has."
	});

	items.push({
		title       => "How do I unban my IP?",
		link        => "$gSkin.absolutedir/faq.shtml",
		description => "Email " _ constants.adminmail_ban _ ".  Make sure to include the IP in question, and any other pertinent information.  If you are connecting through a proxy server, you might need to have your proxy server's admin contact us instead of you."
	});

END %]

__seclev__
500
__version__
$Id$
