diff options
Diffstat (limited to 'data/global.example.conf')
-rw-r--r-- | data/global.example.conf | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/data/global.example.conf b/data/global.example.conf index 90ec350ce..5b99f0178 100644 --- a/data/global.example.conf +++ b/data/global.example.conf @@ -66,7 +66,7 @@ module client = "Global" /* - * This is the global message that will be sent when Services are being + * This is the global message that will be sent when Anope is being * shutdown/restarted. * * This directive is optional. @@ -74,7 +74,7 @@ module #globaloncycledown = "Services are restarting, they will be back shortly - please be good while they're gone" /* - * This is the global message that will be sent when Services (re)join the + * This is the global message that will be sent when Anope (re)joins the * network. * * This directive is optional. @@ -82,7 +82,7 @@ module #globaloncycleup = "Services are now back online - have a nice day" /* - * If set, Services will hide the IRC Operator's nick in a global + * If set, Anope will hide the IRC Operator's nick in a global * message/notice. * * This directive is optional. @@ -113,3 +113,29 @@ command { service = "Global"; name = "HELP"; command = "generic/help"; } */ module { name = "gl_global" } command { service = "Global"; name = "GLOBAL"; command = "global/global"; permission = "global/global"; } + +/* + * gl_queue + * + * Provides the command global/queue. + * + * Used for queuing messages to send to every online user. + */ +module +{ + name = "gl_queue" + + /* The maximum number of messages in a message queue. Defaults to 10. */ + maxqueue = 10 +} +command { service = "Global"; name = "QUEUE"; command = "global/queue"; permission = "global/queue"; } + +/* + * gl_server + * + * Provides the command global/server. + * + * Used for sending a message to every online user on a server. + */ +module { name = "gl_server" } +command { service = "Global"; name = "SERVER"; command = "global/server"; permission = "global/server"; } |