added option to force opers to be in staff_auth_channel
[srvx.git] / srvx.conf.example
1 // services configuration file (example)
2 /* It allows two kinds of comments.  Whitespaces between tokens are
3  * ignored.  All strings (even if they're just numbers) MUST be
4  * enclosed in double quotes.  There must be a semicolon after every
5  * key/value pair.
6  */
7
8 // The "uplinks" section describes what servers we can possibly link
9 // to.  Each subsection describes one server.
10 "uplinks" {
11     "private-network" {
12         // IP address and port the server listens on
13         "address"        "10.0.0.3";
14         "port"           "6660";
15         // What password should we send when we connect?
16         "password"       "passwordtoconnect";
17         // What password should we require our peer to send?
18         // (If it is blank, we do not require a specific password.)
19         "their_password" "passwordtorequire";
20         "enabled"        "1";
21         // How many times should we try to connect before giving up?
22         "max_tries"      "3";
23         // What IP should we bind to?
24         // If you do not specify bind_address, the default is used.
25         // "bind_address"   "192.168.0.10"; // use this ip to link
26     };
27
28     /* unused-uplink is just an example to show you how you can
29      * define more than one uplink (and how you can disable one or
30      * more of them.) */
31     "unused-uplink" {
32         "address"        "10.0.0.4";
33         "port"           "6660";
34         "password"       "passwordtoconnect";
35         "their_password" "passwordtorequire";
36         // If "enabled" is 0, we will not try to use this uplink.
37         "enabled"        "0";
38         "max_tries"      "3";
39     };
40 };
41
42 // The "services" section configures the services that make up srvx.
43 "services" {
44     "nickserv" {
45         "nick" "NickServ";
46         // What user modes do you want this service to have? Please keep in
47         // mind which ircd software you are using here, and that all of the
48         // services need to be at least +o.
49         // "modes" "+iok";
50         // If you want to by have *@* as the default hostmask for all
51         // new accounts, set default_hostmask.  This is discouraged
52         // for security reasons.
53         // "default_hostmask" "1";
54         // do we warn users when someone new auths to their account?
55         "warn_clone_auth" "1";
56         // what is the default maxlogins value?
57         "default_maxlogins" "2";
58         // what is the absolute maxlogins value?
59         "hard_maxlogins" "10";
60         // Which mode should we use for account timestamps?
61         "account_timestamp_mode" "ignore";
62         // This names a file that contains easily guessed passwords.
63         // It always contains "password", "<password>" and the user's
64         // account name.
65         "dict_file" "/usr/share/dict/words";
66         // Minimum number of various types of characters permitted in
67         // a password.
68         "password_min_length" "4";
69         "password_min_digits" "1";
70         "password_min_upper" "0";
71         "password_min_lower" "0";
72         // What should valid account and nicks look like?
73         // If valid_nick_regex is omitted, valid_account_regex is used
74         // for both nicks and accounts.
75         // These look funny because "[][-]" is the only way to write the
76         // character class containing the characters ']', '[' and '-'.
77         "valid_account_regex" "^[][_a-z^`'{}|-][][_a-z0-9^`'{}|-]*$";
78         "valid_nick_regex" "^[-_a-z][-_a-z0-9]*$";
79
80         // Should nick ownership be disabled?
81         "disable_nicks" "0";
82         // One account may only own this many nicks.
83         "nicks_per_account" "4";
84         // Send a warning when someone uses a registered nick?
85         "warn_nick_owned" "0";
86         // What to do when someone uses the NickServ "reclaim" command?
87         // This can be one of "none", "warn", "svsnick", or "kill", but
88         // stock ircu does not support svsnick -- you need Bahamut or a
89         // patch for ircu.  no, don't ask srvx developers for the patch.
90         "reclaim_action" "none";
91         // What (else) to do when someone uses a registered nick?
92         // This can be anything "reclaim_action" can be, but it makes
93         // more sense to use the "warn_nick_owned" instead of "warn".
94         "auto_reclaim_action" "none";
95         // How long to wait before doing the auto_reclaim_action?
96         // This is ignored if "auto_reclaim_action" is "none".
97         "auto_reclaim_delay" "0";
98
99         // access control for who can change account flags
100         "flag_levels" {
101             "g" "800";
102             "lc_h" "800"; // specifically lower case h
103             "uc_H" "800"; // .. and upper case H
104             "S" "999";
105             "b" "1";
106         };
107         // and for who can change epithets for staff
108         "set_epithet_level" "800";
109         // what opserv access level do you need to set somebody else's level?
110         "modoper_level" "850";
111
112         // how often should accounts be expired?
113         "account_expire_freq" "1d";
114         // how long until an account with access to any channel(s) expires?
115         "account_expire_delay" "35d";
116         // how long until an account with no access to any channels expires?
117         "nochan_account_expire_delay" "14d";
118         // how long must an account be inactive so it can be ounregistered without force?
119         "ounregister_inactive" "1M";
120         // which flags on an account require the ounregister to be used with force?
121         "ounregister_flags" "ShgsfnHbu";
122         /* "require_qualified" has been removed. It is now
123          * integrated into the modcmd command authorization
124          * and dispatch mechanism.  "/msg OpServ help modcmd"
125          * for details.
126          */
127         // If somebody keeps guessing passwords incorrectly, do we gag them?
128         "autogag_enabled" "1";
129         "autogag_duration" "30m";
130         "auth_policer" {
131             "size" "5";
132             "drain-rate" "0.05";
133         };
134         // How to integrate with email cookies?
135         "email_enabled" "0"; // if set, /mail/enable MUST be set too
136         "email_required" "0"; // ignored unless email_enabled is non-zero
137         "cookie_timeout" "1d"; // how long before we expire cookies?
138         "accounts_per_email" "1"; // you may want to increase this; or not
139         "email_search_level" "600"; // minimum OpServ level to search based on email address
140         "email_visible_level" "800"; // minimum OpServ level to see somebody's email address
141     };
142
143     "opserv" {
144         "nick" "OpServ";
145         // What user modes do you want this service to have? Please keep in
146         // mind which ircd software you are using here, and that all of the
147         // services need to be at least +o.
148         // "modes" "+iok";
149         // should use of this service be limited to global opers?
150         "privileged" "1";
151         // fullname for service
152         "description" "Oper Service Bot";
153         // hostname for service; only used if "description" is also set
154         "hostname" "dances-all-night-with.srvx.net";
155         // what channel should opserv send debug output to?
156         "debug_channel" "#opserv";
157         "debug_channel_modes" "+tinms";
158         // where to send general alerts (e.g. flood alerts)?
159         "alert_channel" "#ircops";
160         "alert_channel_modes" "+tns";
161         // who to tell about staff auths?
162         "staff_auth_channel" "#opserv";
163         "staff_auth_channel_modes" "+tinms";
164         // Force Opers to be in staff_auth_channel
165         // 0 = don't force opers to be in the channel
166         // 1 = force opers to be in the channel
167         // 2 = force opers to be in the channel but kick them if they get mode -o set (deoper)
168         "staff_auth_force_opers" "2";
169         // how many clones to allow from an untrusted host?
170         "untrusted_max" "4";
171         // how long of a g-line should be issued if the max hosts is exceeded?
172         "clone_gline_duration" "1h";
173         // how long to g-line for ?block (or, by default, for ?trace gline)?
174         "block_gline_duration" "1h";
175         // how long to keep an illegal channel locked down (seconds)?
176         "purge_lock_delay" "60";
177         // channel join flood policer params?
178         "join_policer" {
179             "size" "20";
180             "drain-rate" "1";
181         };
182         // automatically moderate join flooded channels?
183         "join_flood_moderate" "1";
184         // Don't moderate and warn channels unless there are more than
185         // join_flood_moderate_threshold users in the channel. the
186         // value 0 will disable the threshold.
187         "join_flood_moderate_threshold" "50";
188         // new user flood policer params
189         "new_user_policer" {
190             "size" "200";
191             "drain-rate" "3";
192         };
193         
194     };
195
196     "chanserv" {
197         // You may disable a service by removing its "nick" config item.
198         // That means: SERVICES WILL ONLY WORK IF YOU DEFINE THEIR NICK.
199         // (This is changed relative srvx-1.0.x, which would use default
200         // unless you specified ".disabled".)
201         "nick" "ChanServ";
202         // What user modes do you want this service to have? Please keep in
203         // mind which ircd software you are using here, and that all of the
204         // services need to be at least +o.
205         // "modes" "+iok";
206         // Does your ircd have off-channel services support? Does it have
207         // a registered channel mode? Does it support services opping themselves?
208         // Bahamut has these things; ircu2.10.11 does not.
209         // This setting takes three numerical values:
210         //   0 = off
211         //   1 = use a registered channel mode, have services op themselves
212         //   2 = all of the above, and a channel setting to have ChanServ not
213         //       idle in the channel
214         "off_channel" "0";
215         // how long should a person be unseen before resending infoline?
216         "info_delay" "120";
217         // maximum greeting length
218         "max_greetlen" "200";
219         // maximum users in a channel userlist
220         "max_chan_users" "512";
221         // maximum bans on a channel banlist
222         "max_chan_bans" "512";
223         // maximum length of a user's infoline
224         "max_userinfo_length" "400";
225         // If DynLimit is on and there are N users in the channel, ChanServ will
226         // try to keep the limit at N+<adjust_threshold>.
227         "adjust_threshold" "15";
228         // .. but ChanServ will only increment or decrement the limit this often.
229         "adjust_delay" "30";
230         // How often to look for channels that have expired?
231         "chan_expire_freq" "3d";
232         // How long is a channel unvisited (by masters or above) before it can be expired?
233         "chan_expire_delay" "30d";
234         // How often to look for dnrs that have expired?
235         "dnr_expire_freq" "1h";
236         // what !set options should we show when user calls "!set" with no arguments?
237         "set_shows" ("DefaultTopic", "TopicMask", "Greeting", "UserGreeting", "Modes", "PubCmd", "InviteMe", "StrictOp", "AutoOp", "EnfModes", "EnfTopic", "TopicSnarf", "UserInfo", "GiveVoice", "GiveOps", "EnfOps", "Setters", "CtcpUser", "CtcpReaction", "Protect", "Toys", "DynLimit", "NoDelete");
238
239         // A list of !8ball responses
240         "8ball" ("Not a chance.",
241                 "In your dreams.",
242                 "Absolutely!",
243                 "Could be, could be.");
244         // channel(s) that support helpers must be in to be helping
245         // if this is a list, any one by itself will do
246         "support_channel" ("#support", "#registration");
247         // maximum number of channels owned by one account before FORCE is required
248         "max_owned" "5";
249         // how long between automatic topic refreshes with TopicRefresh 0
250         "refresh_period" "3h";
251         // how long between two invites of an user
252         "invite_timeout" "10s";
253         // what should !access say for various staff?
254         "irc_operator_epithet" "a megalomaniacal power hungry tyrant";
255         "network_helper_epithet" "a wannabe tyrant";
256         "support_helper_epithet" "a wannabe tyrant";
257         // what should a newly registered channel get as its modes?
258         "default_modes" "+nt";
259         // minimum opserv access to set, clear or override nodelete setting?
260         "nodelete_level" "1";
261         // how long before a new channel owner can give ownership away?
262         "giveownership_timeout" "1w";
263     };
264
265     "global" {
266         "nick" "Global";
267         // What user modes do you want this service to have? Please keep in
268         // mind which ircd software you are using here, and that all of the
269         // services need to be at least +o.
270         // "modes" "+iok";
271         // should users get community announcements by default or not?
272         "announcements_default" "on";
273     };
274     
275     "spamserv" {
276         // You may disable a service by removing its "nick" config item.
277         // That means: SERVICES WILL ONLY WORK IF YOU DEFINE THEIR NICK.
278         // (This is changed relative srvx-1.0.x, which would use default
279         // unless you specified ".disabled".)
280         "nick" "SpamServ";
281         "debug_channel" "#spamserv";
282         // url of the network rules. if you don't have network rules, remove this key.
283         "network_rules" "http://www.gamesurge.net/aup";
284         // trigger for spamserv; remove this key to disable the trigger
285         "trigger" "-";
286         // ban duration of a short timedban.
287         "short_ban_duration" "15m";
288         // ban duration of a long timedban.
289         "long_ban_duration" "1h";
290         // duration of a gline. SpamServ will issue it after several violations and a kill.
291         "gline_duration" "1h";
292         // users may add "exception_max" exceptions to the list. IRCOps can override "exception_max".
293         "exception_max" "10";
294         // minimum & maximum length of an exception.
295         "exception_min_len" "4";
296         "exception_max_len" "12";
297         // if someone advertises a channel, which doesn't exist (channel is empty, no users),
298         // SpamServ doesn't punish the user.
299         // enable this setting, if SpamServ has to ignore advertisements of channels, which do not exist.
300         // disable this setting, if SpamServ has to punish the users whenever they advertise.
301         "adv_chan_must_exist" "0";
302         // remove all mirc codes from messages before checking for advertisements.
303         // if this setting is disabled and someone spams a url which
304         // contains a bold char, SpamServ doesn't punish him.
305         "strip_mirc_codes" "1";
306         // enable this, if SpamServ has to "follow" ChanServ, when a channel moves or merges.
307         // disable it, if it shouldn't be possible to move or merge SpamServ with /msg chanserv move|merge.
308         "allow_move_merge" "1";
309     };
310 };
311
312 // The modules section gives configuration information to optional modules.
313 "modules" {
314     "helpserv" {
315         // The description/fullname field
316         "description" "Help Queue Manager";
317         // HelpServ bots log all of their requests to this file, with
318         // details on when they were opened, closed, their contents,
319         // helper, etc. The file is written in saxdb format for easy
320         // parsing by external programs. Please note that you cannot
321         // use ?set to change this value while srvx is running.
322         "reqlogfile" "helpservreq.log";
323         // How long should a helpserv be inactive (no requests assigned)
324         // before it can be unregistered by the expire command?
325         "expiration" "60d";
326     };
327     "sockcheck" {
328         "max_sockets" "64";  // allow 64 concurrent clients to be checked
329         "max_read" "1024"; // don't read more than 1024 bytes from any client
330         "gline_duration" "1h"; // issue G-lines lasting one hour
331         "max_cache_age" "60"; // only cache results for 60 seconds
332         // "bind_address" "192.168.0.10"; // do proxy tests from this address
333     };
334     "snoop" {
335         // Where to send snoop messages?
336         "channel" "#wherever";
337         // Which bot?
338         "bot" "OpServ";
339         // Show new users and joins from net joins?  (off by default)
340         "show_bursts" "0";
341     };
342     "memoserv" {
343         "bot" "NickServ";
344         "message_expiry" "30d"; // age when messages are deleted; set
345                                 // to 0 to disable message expiration
346     };
347     "qserver" {
348         "bind_address" "127.0.0.1";
349         "port" "7702";
350         "password" "hello";
351     };
352     "blacklist" {
353         // File containing blacklisted client addresses.
354         // "file" "blacklist.txt";
355         // Each line in the file should start with an IP or hostname.
356         // If there is whitespace and a message after that, the
357         // message will override this one:
358         "file_reason" "client is blacklisted";
359         // How long should a blacklist G-line last?
360         "gline_duration" "1h";
361         // Bot used to send debug notices
362         "debug_bot" "OpServ";
363         // To which channel should debug output be sent?
364         "debug_channel" "#opserv";
365         "debug_channel_modes" "+tinms";
366         // If you want to use DNS blacklists, add them here:
367         "dnsbl" {
368             // This DNSBL zone does not exist - you'll have to pick your own.
369             "dnsbl.example.org" {
370                 // Send a notice instead of glining blacklisted ips
371                 "debug" "1";
372                 "description" "Example DNSBL entry";
373                 "reason" "busted by a dns blacklist";
374                 "duration" "1h";
375                 // You can stick the client's IP in the G-line message.
376                 "reason_2" "Example DNSBL reported %ip%'s address as 127.0.0.2";
377                 // .. or the contents of a DNS TXT.
378                 "reason_3" "%txt%";
379             };
380         };
381     };
382     "sar" {
383         // You generally will not want to override these defaults.
384         // "resolv_conf" "/etc/resolv.conf";
385         // "services" "/etc/services";
386         // "bind_address" "0.0.0.0";
387         // "bind_port" "0";
388         // The defaults for these are derived from the system config files (above).
389         // "domain" "example.org";
390         // "timeout" "3"; // base timeout for a DNS reply
391         // "retries" "3"; // number of times to retry on different servers or longer timeouts
392         // "ndots" "1";   // number of dots needed in a hostname to bypass search path
393         // "edns0" "0";   // if set, enable EDNS0 extended message sizes
394         // "search" ("example.org", "example.net");
395         // "nameservers" ("127.0.0.1");
396     };
397 };
398
399 "policers" {
400     "commands-luser" {
401         "size" "5";
402         "drain-rate" "0.5";
403     };
404 };
405
406 "rlimits" {
407     "data" "50M";
408     "stack" "6M";
409     "vmem" "100M";
410 };
411
412 "server" {
413     "hostname" "localhost.domain";
414     "description" "Network Services";
415     "network" "GenericNET";
416     "hidden_host" "users.Generic.NET"; // set this if you enabled ircd/Undernet's +x mode
417     /* hidden_host should match the F:HIDDEN_HOST: line in your ircu's ircd.conf;
418      * srvx does not set the host suffix for users, but must know it when making
419      * things like bans, where it should not show the user's real hostname. */
420     "numeric" "10"; // hint: If you get collisions on link, CHANGE THIS.
421     "max_users" "256"; // You can save a little memory by setting this to a lower value.
422     "force_n2k" "1"; // Use extended (5-digit) numnick for self, even if 3 are possible.
423     "ping_freq" "60";
424     "ping_timeout" "90";
425     "max_cycles" "30"; // max uplink cycles before giving up
426     // Admin information is traditionally: location, location, email
427     "admin" ("IRC Network", "Gotham City, GO", "Mr Commissioner <james.gordon@police.gov>");
428     /* the following two settings are for ircu's HEAD_IN_SAND features, and are equivelent to
429      * the F: lines in ircu's ircd.conf. both can be disabled by commenting them out. */
430     "his_servername" "*.Generic.NET"; // hidden server name, shown in remote /whois requests
431     "his_servercomment" "The Generic, Boring IRC Network";
432 };
433
434 // controlling how services (mostly NickServ) send mail
435 "mail" {
436     // These options are the defaults.
437     "enable" "0";
438     "mailer" "/usr/sbin/sendmail";
439     "from_address" "admin@poorly.configured.server";
440     // These are not :>
441     "extra_headers" ("X-Ereet-Services: srvx r reet");
442     "body_prefix_first" ("Welcome to our network.  This prefix is used whenever srvx thinks this may be the first time we send email to your address.");
443     "body_prefix" ("This goes before the mail text.", "Each string here is treated as a separate \"paragraph\" for line wrapping.");
444     "body_suffix_first" ("We care a lot about spam.  If you did not request this email, bitch and moan loudly at our opers, and tell our ISP to gank our connection.");
445     "body_suffix" ("PLEASE DO NOT BE ALARMED.  CALMLY BOARD THE AIRCRAFT, STRAP YOUR ARMS ACROSS YOUR BODY, AND JUMP THE HELL OUT OF THE PLANE.", "Yaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatta!");
446     // If you are using the smtp mail back-end, you may need to set these:
447     "smtp_server" "localhost";
448     "smtp_service" "smtp";
449     // "smtp_myname" "localhost.domain";
450 };
451
452 // New section in srvx-1.2 to control database locations, etc.
453 // If you leave this section out, each database will be in its own file,
454 // and they will be written out every half hour.
455 "dbs" {
456     // This just illustrates how you can jam every database into one huge ("mondo") file.
457     "ChanServ" { "mondo_section" "ChanServ"; };
458     "gline" { "mondo_section" "gline"; };
459     "Global" { "mondo_section" "Global"; };
460     "HelpServ" { "mondo_section" "HelpServ"; };
461     "modcmd" { "mondo_section" "modcmd"; };
462     "NickServ" { "mondo_section" "NickServ"; };
463     "OpServ" { "mondo_section" "OpServ"; };
464     "sendmail" { "mondo_section" "sendmail"; };
465     "SpamServ" { "mondo_section" "SpamServ"; };
466
467     // These are the options if you want a database to be in its own file.
468     "mondo" {
469         // Where to put it?
470         "filename" "srvx.db";
471         // How often should it be saved?
472         // (You can disable automatic saves by setting this to 0.)
473         "frequency" "30m";
474     };
475 };
476
477 // New section in srvx-1.2 to control log destinations.
478 // If you leave this section out, each service (technically, each log
479 // facility) will be in its own file, just like before.
480 "logs" {
481     // Two kinds of items exist in this section.
482
483     // One is a facility configuration subsection.  These have the
484     // name of a log facility (one of "ChanServ", "Global",
485     // "HelpServ", "NickServ", "OpServ", "ProxyCheck", or "srvx") and
486     // the value is a subsection. The "srvx" log facility is a
487     // catch-all/fall-back facility.
488     "srvx" {
489         // The "max_age" option says how long to keep log audit entries.
490         "max_age" "10m";
491         // The "max_count" option says how many log audit entries to keep.
492         "max_count" "1024";
493         // Audit (command tracking) entries are discarded if they exceed
494         // either limit: for example, if entry 500 is 10 minutes old, it
495         // will be discarded next time any audit command is logged.
496     };
497
498     // The other kind of item is a target list.  The name of each is a
499     // description of facility-and-severity combinations, and the value
500     // is a string (or list of strings) that describe where matching
501     // events should be logged.  As a special case, the facility * will
502     // specify how to log events regardless of their true facility, and
503     // the severity * will match all severities for a facility.
504     // Log targets use a psuedo-URI syntax:  one of "file:filename",
505     // "std:[out|err|n]" where n is a valid file descriptor, or
506     // "irc:#channel" (nicknames or server masks can be used instead
507     // of channel names, but should be used with care).
508     // The severity is one of "replay", "debug", "command", "info",
509     // "override", "staff", "warning", "error", or "fatal".
510     // WARNING: If any severity except "replay" for a facility is left
511     // unspecified, it will use the default target (for example,
512     // "file:chanserv.log").  For "replay" severity, you must ALWAYS
513     // list a target to log it -- this is because it is very rarely
514     // useful.
515     "*.*" ("std:out", "file:everything.log"); // does NOT suppress any defaults
516     "*.override,staff" "irc:#big-brother"; // report all uses of staff commands
517     "ChanServ.*" "file:chanserv.log"; // duplicates the default behavior
518     "ProxyCheck.*" (); // stop it from logging anything
519 };