<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wiki.anope.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.anope.org/index.php?action=history&amp;feed=atom&amp;title=2.0%2FModules%2Fos_akill</id>
		<title>2.0/Modules/os akill - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.anope.org/index.php?action=history&amp;feed=atom&amp;title=2.0%2FModules%2Fos_akill"/>
		<link rel="alternate" type="text/html" href="https://wiki.anope.org/index.php?title=2.0/Modules/os_akill&amp;action=history"/>
		<updated>2026-05-29T18:45:40Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.4</generator>

	<entry>
		<id>//wiki.anope.org/index.php?title=2.0/Modules/os_akill&amp;diff=760&amp;oldid=prev</id>
		<title>Azander: Created page with &quot;{{Language|2.0/Modules/os_akill}} {{Syntax|os_akill|OperServ|Anope}}  == &lt;div class=&quot;moduleheader&quot;&gt;Description&lt;/div&gt; == Allows Services Operators to manipulate the AKILL list....&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.anope.org/index.php?title=2.0/Modules/os_akill&amp;diff=760&amp;oldid=prev"/>
				<updated>2014-05-08T19:37:59Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{Language|2.0/Modules/os_akill}} {{Syntax|os_akill|OperServ|Anope}}  == &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Description&amp;lt;/div&amp;gt; == Allows Services Operators to manipulate the AKILL list....&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Language|2.0/Modules/os_akill}}&lt;br /&gt;
{{Syntax|os_akill|OperServ|Anope}}&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Description&amp;lt;/div&amp;gt; ==&lt;br /&gt;
Allows Services Operators to manipulate the AKILL list. If a user matching an AKILL mask attempts to connect, Services will issue a KILL for that user and, on supported server types, will instruct all servers to add a ban for the mask which the user matched.&lt;br /&gt;
&lt;br /&gt;
'''NOTE''':  Access to this command requires the permission operserv/akill to be present in your opertype.&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Commands&amp;lt;/div&amp;gt; == &lt;br /&gt;
;akill ADD [+expiry] mask reason&lt;br /&gt;
:adds the given mask to the AKILL list for the given reason, which must be given. Mask should be in the format of nick!user@host#real name, though all that is required is user@host. If a real name is specified, the reason must be prepended with a :. expiry is specified as an integer followed by one of d (days), h (hours), or m (minutes). Combinations (such as 1h30m) are not permitted. If a unit specifier is not included, the default is days (so +30 by itself means 30 days). To add an AKILL which does not expire, use +0. If the usermask to be added starts with a +, an expiry time must be given, even if it is the same as the default. The current AKILL default expiry time can be found with the STATS AKILL command.&lt;br /&gt;
&lt;br /&gt;
;akill DEL {mask | entry-num | list | id}&lt;br /&gt;
:removes the given mask from the AKILL list if it is present.  If a list of entry numbers is given, those entries are deleted.&lt;br /&gt;
&lt;br /&gt;
;akill LIST [mask | list | id]&lt;br /&gt;
: displays the AKILL list. If a wildcard mask is given, only those entries matching the mask are displayed.  If a list of entry numbers is given, only those entries are shown&lt;br /&gt;
&lt;br /&gt;
;akill VIEW [mask | list | id]&lt;br /&gt;
:a more verbose version of AKILL LIST, and will show who added an AKILL, the date it was added, and when it expires, as well as the user@host/ip mask and reason.&lt;br /&gt;
&lt;br /&gt;
;akill CLEAR&lt;br /&gt;
:clears all entries of the AKILL list.&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Examples&amp;lt;/div&amp;gt; ==&lt;br /&gt;
/msg OperServ AKILL ADD *@*.evil.com Evil is not welcome here.&lt;br /&gt;
&lt;br /&gt;
/msg OperServ AKILL DEL 1&lt;br /&gt;
&lt;br /&gt;
/msg OperServ AKILL LIST&lt;br /&gt;
&lt;br /&gt;
/msg OperServ AKILL VIEW 3&lt;br /&gt;
&lt;br /&gt;
/msg OperServ AKILL CLEAR&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;div class=&amp;quot;moduleheader&amp;quot;&amp;gt;Default Configuration&amp;lt;/div&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;code&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
 * os_akill&lt;br /&gt;
 *&lt;br /&gt;
 * Provides the command operserv/akill.&lt;br /&gt;
 *&lt;br /&gt;
 * Used to ban users from the network.&lt;br /&gt;
 */&lt;br /&gt;
module { name = &amp;quot;os_akill&amp;quot; }&lt;br /&gt;
command { service = &amp;quot;OperServ&amp;quot;; name = &amp;quot;AKILL&amp;quot;; command = &amp;quot;operserv/akill&amp;quot;; permission = &amp;quot;operserv/akill&amp;quot;; }&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Azander</name></author>	</entry>

	</feed>