diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-11 12:49:25 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-11 12:49:25 +0100 |
commit | 3e9f516d556351efe5fbd678a3db86d25274c436 (patch) | |
tree | 30776ab35903899ff66cea6ced03c874b0b21b8a /data/chanserv.example.conf | |
parent | 744b8bc4dc823e090b8004c0ac82dc73837f4bef (diff) |
Consistently use yes/no instead of true/false in the configs.
Diffstat (limited to 'data/chanserv.example.conf')
-rw-r--r-- | data/chanserv.example.conf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf index d3f1f6bda..cfd3e4746 100644 --- a/data/chanserv.example.conf +++ b/data/chanserv.example.conf @@ -171,19 +171,19 @@ module /* * If set, prevents channel access entries from containing hostmasks. */ - disallow_hostmask_access = false + disallow_hostmask_access = no /* * If set, prevents channels from being on access lists. */ - disallow_channel_access = false + disallow_channel_access = no /* * If set, ChanServ will always lower the timestamp of registered channels to their registration date. * This prevents several race conditions where unauthorized users can join empty registered channels and set * modes etc. prior to services deopping them. */ - always_lower_ts = false + always_lower_ts = no } /* @@ -1179,7 +1179,7 @@ module name = "cs_seen" /* If set, uses the older 1.8 style seen, which is less resource intensive */ - simple = false + simple = no /* Sets the time to keep seen entries in the seen database. */ purgetime = 90d @@ -1228,7 +1228,7 @@ module * If set, persistent channels have their creation times lowered to their * original registration dates. */ - persist_lower_ts = true + persist_lower_ts = yes } command { service = "ChanServ"; name = "SET"; command = "chanserv/set"; group = "chanserv/management"; } command { service = "ChanServ"; name = "SET AUTOOP"; command = "chanserv/set/autoop"; } @@ -1269,7 +1269,7 @@ command { service = "ChanServ"; name = "SET EMAIL"; command = "chanserv/set/misc */ module { name = "cs_status" } command { service = "ChanServ"; name = "STATUS"; command = "chanserv/status"; } -command { service = "ChanServ"; name = "WHY"; command = "chanserv/status"; hide = true; } +command { service = "ChanServ"; name = "WHY"; command = "chanserv/status"; hide = yes; } /* * cs_suspend |