<feed xmlns='http://www.w3.org/2005/Atom'>
<title>~steering/inspircd++.git/docs/conf/inspircd.conf.example, branch v4.0.0a9</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://cgit.space/~steering/inspircd++.git/atom/docs/conf/inspircd.conf.example?h=v4.0.0a9</id>
<link rel='self' href='https://cgit.space/~steering/inspircd++.git/atom/docs/conf/inspircd.conf.example?h=v4.0.0a9'/>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/'/>
<updated>2022-03-11T14:52:56Z</updated>
<entry>
<title>Merge branch 'insp3' into master.</title>
<updated>2022-03-11T14:52:56Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2022-03-11T14:27:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=2d329701db1d5c0361c018e088eb82c457f8ec7c'/>
<id>urn:sha1:2d329701db1d5c0361c018e088eb82c457f8ec7c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change delaymsg to use exemptchanops and have an oper priv (#1959).</title>
<updated>2022-02-13T14:54:47Z</updated>
<author>
<name>iwalkalone</name>
</author>
<published>2022-02-13T14:54:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=5027a63e52f4fb65cbd210ba8f5f44a397c2de96'/>
<id>urn:sha1:5027a63e52f4fb65cbd210ba8f5f44a397c2de96</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make the ADMIN output more like other IRC servers.</title>
<updated>2021-08-26T19:23:43Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-08-26T19:23:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=e121ede0cc8f2a47becf8634b7b05c6914fabb87'/>
<id>urn:sha1:e121ede0cc8f2a47becf8634b7b05c6914fabb87</id>
<content type='text'>
- Remove our weird numeric prefixes.
- Merge the nick and name fields.
- Add a description field for ADMINLOC2.
</content>
</entry>
<entry>
<title>Make the channel key length configurable in the &lt;limits&gt; tag.</title>
<updated>2021-08-17T12:50:51Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-08-10T23:34:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=8e7b90e491f82e4f8e0154b59b95d70aeb812aa6'/>
<id>urn:sha1:8e7b90e491f82e4f8e0154b59b95d70aeb812aa6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'insp3' into master.</title>
<updated>2021-07-24T10:34:10Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-07-24T10:32:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=f4c257e1b20d285b27f5c2942d03c142eee82c09'/>
<id>urn:sha1:f4c257e1b20d285b27f5c2942d03c142eee82c09</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Also increase maxquit from 255 to 300.</title>
<updated>2021-07-24T10:30:29Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-07-24T10:29:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=36a2e06a85e5c775c6280360567741d6ab3c52f8'/>
<id>urn:sha1:36a2e06a85e5c775c6280360567741d6ab3c52f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update the default limits in the example config.</title>
<updated>2021-07-24T10:16:07Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-07-24T10:13:58Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=6369f4eab7fc7aa7813b7c033ac13dda4691e93f'/>
<id>urn:sha1:6369f4eab7fc7aa7813b7c033ac13dda4691e93f</id>
<content type='text'>
- Change maxchan from 64 to 60 (base 10 is more human friendly)
- Change maxreal from 128 to 130 (base 10 is more human friendly)
- Recalculate the maximum lengths of maxkick and maxtopic.

For maxkick:

':' &lt;nick&gt; '!' &lt;user&gt; '@' &lt;host&gt; ' KICK ' &lt;channel&gt; ' ' &lt;nick&gt; ' :' &lt;REASON&gt; "\r\n"
 1   [30]   1   [10]   1   [64]      6      [60]     1   [30]   2               2

1 + 30 + 1 + 10 + 1 + 64 + 6 + 60 + 1 + 30 + 2 + 2 = 208
512 - 208 = 304 (rounded down to 300)

For maxtopic:

':' &lt;nick&gt; '!' &lt;user&gt; '@' &lt;host&gt; ' TOPIC ' &lt;channel&gt; ' :' &lt;TOPIC&gt; "\r\n"
 1   [30]   1   [10]   1   [64]      7       [60]     2              2

1 + 30 + 1 + 10 + 1 + 64 + 7 + 60 + 2 + 2 = 178
512 - 178 = 334 (rounded down to 330)
</content>
</entry>
<entry>
<title>Merge branch 'insp3' into master.</title>
<updated>2021-06-19T19:07:35Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-06-19T19:07:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=dce2d6a2557b5ea3f2b14fc3c89be3e3f4cfcd1a'/>
<id>urn:sha1:dce2d6a2557b5ea3f2b14fc3c89be3e3f4cfcd1a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reorder &lt;limits&gt; alphabetically in the example config.</title>
<updated>2021-06-19T13:21:13Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-06-19T13:21:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=e047bcc98d6672474514b157652cf757d4f107cd'/>
<id>urn:sha1:e047bcc98d6672474514b157652cf757d4f107cd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'insp3' into master.</title>
<updated>2021-06-18T14:02:34Z</updated>
<author>
<name>Sadie Powell</name>
</author>
<published>2021-06-18T14:02:34Z</published>
<link rel='alternate' type='text/html' href='https://cgit.space/~steering/inspircd++.git/commit/?id=b2fde769b6daa6fe062525210d65ae5f1536f4bf'/>
<id>urn:sha1:b2fde769b6daa6fe062525210d65ae5f1536f4bf</id>
<content type='text'>
</content>
</entry>
</feed>
