summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/anope.example.conf4
-rw-r--r--data/botserv.example.conf8
-rw-r--r--data/chanserv.example.conf12
-rw-r--r--data/hostserv.example.conf4
-rw-r--r--data/memoserv.example.conf2
-rw-r--r--data/modules.example.conf2
-rw-r--r--data/nickserv.example.conf12
-rw-r--r--data/stats.standalone.example.conf4
8 files changed, 24 insertions, 24 deletions
diff --git a/data/anope.example.conf b/data/anope.example.conf
index 4a93dc6ad..2a8e03c13 100644
--- a/data/anope.example.conf
+++ b/data/anope.example.conf
@@ -333,13 +333,13 @@ networkinfo
vhost_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-/"
/*
- * If set to true, allows vhosts to not contain dots (.).
+ * If enabled, allows vhosts to not contain dots (.).
* Newer IRCds generally do not have a problem with this, but the same warning as
* vhost_chars applies.
*
* It is recommended you DON'T change this.
*/
- allow_undotted_vhosts = false
+ allow_undotted_vhosts = no
/*
* The characters that are not allowed to be at the very beginning or very ending
diff --git a/data/botserv.example.conf b/data/botserv.example.conf
index 20a5523ea..0a509b10c 100644
--- a/data/botserv.example.conf
+++ b/data/botserv.example.conf
@@ -387,15 +387,15 @@ fantasy { name = "ENFORCE"; command = "chanserv/enforce"; }
fantasy { name = "ENTRYMSG"; command = "chanserv/entrymsg"; }
fantasy { name = "FLAGS"; command = "chanserv/flags"; }
fantasy { name = "HALFOP"; command = "chanserv/modes"; }
-fantasy { name = "HELP"; command = "generic/help"; prepend_channel = false; }
+fantasy { name = "HELP"; command = "generic/help"; prepend_channel = no; }
fantasy { name = "HOP"; command = "chanserv/xop"; }
-fantasy { name = "INFO"; command = "chanserv/info"; prepend_channel = false; }
+fantasy { name = "INFO"; command = "chanserv/info"; prepend_channel = no; }
fantasy { name = "INVITE"; command = "chanserv/invite"; }
fantasy { name = "K"; command = "chanserv/kick"; }
fantasy { name = "KB"; command = "chanserv/ban"; }
fantasy { name = "KICK"; command = "chanserv/kick"; }
fantasy { name = "LEVELS"; command = "chanserv/levels"; }
-fantasy { name = "LIST"; command = "chanserv/list"; prepend_channel = false; }
+fantasy { name = "LIST"; command = "chanserv/list"; prepend_channel = no; }
fantasy { name = "LOG"; command = "chanserv/log"; }
fantasy { name = "MODE"; command = "chanserv/mode"; }
fantasy { name = "MUTE"; command = "chanserv/ban"; kick = no; mode = "QUIET"; }
@@ -403,7 +403,7 @@ fantasy { name = "OP"; command = "chanserv/modes"; }
fantasy { name = "OWNER"; command = "chanserv/modes"; }
fantasy { name = "PROTECT"; command = "chanserv/modes"; }
fantasy { name = "QOP"; command = "chanserv/xop"; }
-fantasy { name = "SEEN"; command = "chanserv/seen"; prepend_channel = false; }
+fantasy { name = "SEEN"; command = "chanserv/seen"; prepend_channel = no; }
fantasy { name = "SOP"; command = "chanserv/xop"; }
fantasy { name = "STATUS"; command = "chanserv/status"; }
fantasy { name = "SUSPEND"; command = "chanserv/suspend"; permission = "chanserv/suspend"; }
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
diff --git a/data/hostserv.example.conf b/data/hostserv.example.conf
index 71c4e2e8f..368658c70 100644
--- a/data/hostserv.example.conf
+++ b/data/hostserv.example.conf
@@ -126,12 +126,12 @@ module
/*
* Upon nickserv/group, this option syncs the nick's main vhost to the grouped nick.
*/
- syncongroup = true
+ syncongroup = yes
/*
* This makes vhosts act as if they are per account.
*/
- synconset = true
+ synconset = yes
}
command { service = "HostServ"; name = "GROUP"; command = "hostserv/group"; }
diff --git a/data/memoserv.example.conf b/data/memoserv.example.conf
index 1bfa50ebf..e7b1153a5 100644
--- a/data/memoserv.example.conf
+++ b/data/memoserv.example.conf
@@ -208,7 +208,7 @@ command { service = "MemoServ"; name = "READ"; command = "memoserv/read"; }
*
* This directive is optional.
*/
- operonly = false
+ operonly = no
}
#command { service = "MemoServ"; name = "RSEND"; command = "memoserv/rsend"; }
diff --git a/data/modules.example.conf b/data/modules.example.conf
index 90cd0c83a..71ed05ab5 100644
--- a/data/modules.example.conf
+++ b/data/modules.example.conf
@@ -457,7 +457,7 @@ module
service = "ChanServ"; name = "CLEAR"; command = "rewrite"
/* Enable rewrite. */
- rewrite = true
+ rewrite = yes
/* Source message to match. A $ can be used to match anything. */
rewrite_source = "CLEAR $ USERS"
diff --git a/data/nickserv.example.conf b/data/nickserv.example.conf
index 211c9a29f..424ca55e4 100644
--- a/data/nickserv.example.conf
+++ b/data/nickserv.example.conf
@@ -306,7 +306,7 @@ command { service = "NickServ"; name = "AJOIN"; command = "nickserv/ajoin"; }
*/
module { name = "ns_alist" }
command { service = "NickServ"; name = "ALIST"; command = "nickserv/alist"; }
-command { service = "NickServ"; name = "ACCESS"; command = "nickserv/alist"; hide = true; }
+command { service = "NickServ"; name = "ACCESS"; command = "nickserv/alist"; hide = yes; }
/*
* ns_cert
@@ -400,7 +400,7 @@ module
*/
maxlogins = 10
}
-command { service = "NickServ"; name = "ID"; command = "nickserv/identify"; hide = true; }
+command { service = "NickServ"; name = "ID"; command = "nickserv/identify"; hide = yes; }
command { service = "NickServ"; name = "IDENTIFY"; command = "nickserv/identify"; }
/*
@@ -473,8 +473,8 @@ module
command { service = "NickServ"; name = "RECOVER"; command = "nickserv/recover"; }
# For compatibility with Anope 1.8 and Atheme.
-command { service = "NickServ"; name = "GHOST"; command = "nickserv/recover"; hide = true; }
-command { service = "NickServ"; name = "RELEASE"; command = "nickserv/recover"; hide = true; }
+command { service = "NickServ"; name = "GHOST"; command = "nickserv/recover"; hide = yes; }
+command { service = "NickServ"; name = "RELEASE"; command = "nickserv/recover"; hide = yes; }
/*
* ns_register
@@ -663,8 +663,8 @@ command { service = "NickServ"; name = "SET PROTECT"; command = "nickserv/set/pr
command { service = "NickServ"; name = "SASET PROTECT"; command = "nickserv/saset/protect"; permission = "nickserv/saset/kill"; }
# For compatibility with Anope 2.0.
-command { service = "NickServ"; name = "SET KILL"; command = "nickserv/set/protect"; hide = true; }
-command { service = "NickServ"; name = "SASET KILL"; command = "nickserv/saset/protect"; permission = "nickserv/saset/protect"; hide = true; }
+command { service = "NickServ"; name = "SET KILL"; command = "nickserv/set/protect"; hide = yes; }
+command { service = "NickServ"; name = "SASET KILL"; command = "nickserv/saset/protect"; permission = "nickserv/saset/protect"; hide = yes; }
/*
* ns_suspend
diff --git a/data/stats.standalone.example.conf b/data/stats.standalone.example.conf
index 37fe4ab4d..00c2e3e17 100644
--- a/data/stats.standalone.example.conf
+++ b/data/stats.standalone.example.conf
@@ -323,13 +323,13 @@ networkinfo
vhost_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-"
/*
- * If set to true, allows vhosts to not contain dots (.).
+ * If enabled, allows vhosts to not contain dots (.).
* Newer IRCds generally do not have a problem with this, but the same warning as
* vhost_chars applies.
*
* It is recommended you DON'T change this.
*/
- allow_undotted_vhosts = false
+ allow_undotted_vhosts = no
/*
* The characters that are not allowed to be at the very beginning or very ending