aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf/inspircd.conf.example
Commit message (Expand)AuthorAgeFilesLines
* Move ssl_mbedtls to inspircd-contrib.•••Closes #2088. Gravatar Sadie Powell2024-04-151-6/+5
* Add an option for including the setter's full mask in list modes.Gravatar Sadie Powell2023-09-211-0/+4
* Rename <options:hostintopic> to <options:maskintopic>.•••This option stores the user *mask* not the user host so the old name is incorrect. Gravatar Sadie Powell2023-09-211-3/+3
* Fix some links that point to the v3 docs to point to the v4 docs.Gravatar Sadie Powell2023-07-251-3/+3
* Also allow suffixing with -line[d] if an X-line is two characters.•••This makes things easier for modules like require_auth in contrib which has a GA-line. Gravatar Sadie Powell2023-07-251-2/+2
* Add the %created% and %fulltype% variables for the X-line reason.Gravatar Sadie Powell2023-07-251-2/+8
* Make the X-line quit message format a lot more flexible.Gravatar Sadie Powell2023-07-211-4/+21
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-101-2/+2
|\
| * Fix a typo in the example configs.•••Reported by @siniStar7. Gravatar Sadie Powell2023-07-071-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-061-14/+18
|\|
| * Redocument <options:defaultmodes>.Gravatar Sadie Powell2023-07-061-2/+6
| * Redocument <connect:modes> and set commonchans by default.•••This mode is fairly unintrusive and prevents PM spam from bots that do not share a channel. Gravatar Sadie Powell2023-07-061-12/+12
* | Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. Gravatar Sadie Powell2023-06-291-4/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-06-291-2/+6
|\|
| * Fix the documentation of <connect:useident>.Gravatar Sadie Powell2023-06-291-2/+6
* | Move example link config include to example module config file.Gravatar Sadie Powell2023-06-251-4/+0
* | Allow customising the message shown when hiding an X-line ban.Gravatar Sadie Powell2023-04-181-4/+4
* | Convert the cloak_md5 module to the new cloak system.Gravatar Sadie Powell2023-01-131-1/+1
* | Update some references to services_account that were missed.Gravatar Sadie Powell2022-12-111-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-10-291-2/+2
|\|
| * Fix the documentation of <options:defaultmodes>.Gravatar Sadie Powell2022-10-291-2/+2
* | Rename session registration to connection to avoid a semantic conflict.•••We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. Gravatar Sadie Powell2022-10-291-3/+3
* | Allow requiring users to be logged into their nick for requireaccount.Gravatar Sadie Powell2022-10-181-0/+2
* | Rename the services_account module to account.Gravatar Sadie Powell2022-10-181-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-041-1/+1
|\|
| * WebSockets are a HTTP feature not a HTML5 feature.Gravatar Sadie Powell2022-08-041-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-06-221-0/+1
|\|
| * Add support for escaping hex colour codes•••This is not widely supported but we should have an escape regardless. Gravatar Sadie Powell2022-06-191-0/+1
* | Update links to point to the upcoming v4 docs.•••[skip alpine ci] [skip macos ci] [skip windows ci] [skip ubuntu ci] Gravatar Sadie Powell2022-05-181-4/+4
* | Rewrite the entire logging system.•••- Much cleaner API for writing to the log. - Adds support for stderr and stdout logging to the core. - Adds support for sql and syslog logging in modules. Gravatar Sadie Powell2022-05-011-49/+32
* | Allow normalising extbans to a specific format.•••Also, fix canonicalisation of acting extban values. Gravatar Sadie Powell2022-04-171-0/+9
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-03-111-0/+2
|\|
| * Change delaymsg to use exemptchanops and have an oper priv (#1959).Gravatar iwalkalone2022-02-131-0/+2
* | Make the ADMIN output more like other IRC servers.•••- Remove our weird numeric prefixes. - Merge the nick and name fields. - Add a description field for ADMINLOC2. Gravatar Sadie Powell2021-08-261-9/+8
* | Make the channel key length configurable in the <limits> tag.Gravatar Sadie Powell2021-08-171-0/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-241-5/+5
|\|
| * Also increase maxquit from 255 to 300.Gravatar Sadie Powell2021-07-241-1/+1
| * Update the default limits in the example config.•••- 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: ':' <nick> '!' <user> '@' <host> ' KICK ' <channel> ' ' <nick> ' :' <REASON> "\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: ':' <nick> '!' <user> '@' <host> ' TOPIC ' <channel> ' :' <TOPIC> "\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) Gravatar Sadie Powell2021-07-241-4/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-191-14/+14
|\|
| * Reorder <limits> alphabetically in the example config.Gravatar Sadie Powell2021-06-191-14/+14
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-06-181-0/+3
|\|
| * Add a link to the list of predefined config variables.Gravatar Sadie Powell2021-06-141-0/+3
* | Demote the censor module to inspircd-contrib.Gravatar Sadie Powell2021-06-011-3/+1
* | Rename the cgiirc module to gateway.Gravatar Sadie Powell2021-04-111-1/+1
* | Refer to encryption as TLS instead of SSL in all messages.Gravatar Sadie Powell2021-04-081-11/+11
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-101-2/+2
|\|
| * Rename `<bind:ssl>` to `<bind:sslprofile>`.Gravatar Sadie Powell2021-03-101-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-0/+4
|\|
| * Add a config option for exempting classes from connflood.Gravatar Sadie Powell2021-02-211-0/+4
* | Rename <uline> to <service>.Gravatar Sadie Powell2021-01-301-1/+1