diff options
author | Peter Powell <petpow@saberuk.com> | 2018-03-29 17:45:56 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-04-22 23:30:41 +0100 |
commit | 6d1c1cb51753f986b86b408a5828373d0066624b (patch) | |
tree | 8169e18678174ed5b23d643981c10f824642bacb /docs/conf | |
parent | 35c8cde85996e9fe89920acb92a84c5d9bd6aeaf (diff) |
Always process MOTD formatting escape codes.
The options for disabling these were added to keep compatibility
with previous 2.0 releases and are not needed any more.
Diffstat (limited to 'docs/conf')
-rw-r--r-- | docs/conf/inspircd.conf.example | 8 | ||||
-rw-r--r-- | docs/conf/modules.conf.example | 10 |
2 files changed, 1 insertions, 17 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index 6a9b960e0..e28319a69 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -315,14 +315,6 @@ # specified using <files secretmotd="filename"> or <execfiles ...> motd="secretmotd" - # Allow color codes to be processed in the message of the day file. - # the following characters are valid color code escapes: - # \002 or \b = Bold - # \037 or \u = Underline - # \003 or \c = Color (with a code postfixed to this char) - # \017 or \x = Stop all color sequences - allowmotdcolors="false" - # port: What port range this user is allowed to connect on. (optional) # The ports MUST be set to listen in the bind blocks above. port="6697,9999"> diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 6955b2d74..5f219da76 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1403,11 +1403,7 @@ # onoper - If on, the message is sent on /OPER, otherwise it's # # only sent when /OPERMOTD is used. # # # -# processcolors - Allow color codes to be processed in the opermotd. # -# Read the comment above <connect:allowmotdcolors> in # -# inspircd.conf.example for details. # -# # -#<opermotd file="examples/opermotd.txt.example" onoper="yes" processcolors="false"> +#<opermotd file="examples/opermotd.txt.example" onoper="yes"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Override module: Adds support for oper override. @@ -1864,9 +1860,6 @@ # (similar to /MOTD; the default). # # * notice: Send contents as a series of notices. # # * msg: Send contents as a series of private messages. # -# colors - If true, color codes (\c, \b, \u, etc.) will be processed # -# and sent as ANSI colors. If false (default) the file will # -# be displayed as-is. # # # # When using the method "numeric", the following extra settings are # # available: # @@ -1879,7 +1872,6 @@ # # #<showfile name="RULES" # file="rules.txt" -# colors="true" # introtext="Server rules:" # endtext="End of server rules."> |