diff --git a/doc/ircd.conf.example b/doc/ircd.conf.example index 71d26c71..2305c302 100644 --- a/doc/ircd.conf.example +++ b/doc/ircd.conf.example @@ -559,7 +559,7 @@ general { tkline_expire_notices = no; default_floodcount = 10; failed_oper_notice = yes; - dots_in_ident=2; + dots_in_ident = 2; min_nonwildcard = 4; min_nonwildcard_simple = 3; max_accept = 100; @@ -584,13 +584,13 @@ general { warn_no_nline = yes; use_propagated_bans = yes; stats_e_disabled = no; - stats_c_oper_only=no; - stats_h_oper_only=no; - stats_y_oper_only=no; - stats_o_oper_only=yes; - stats_P_oper_only=no; - stats_i_oper_only=masked; - stats_k_oper_only=masked; + stats_c_oper_only = no; + stats_h_oper_only = no; + stats_y_oper_only = no; + stats_o_oper_only = yes; + stats_P_oper_only = no; + stats_i_oper_only = masked; + stats_k_oper_only = masked; map_oper_only = no; operspy_admin_only = no; operspy_dont_care_user_info = no; diff --git a/doc/reference.conf b/doc/reference.conf index ff1c1933..b9d1e644 100644 --- a/doc/reference.conf +++ b/doc/reference.conf @@ -296,7 +296,7 @@ class "server" { max_number = 1; /* sendq: servers need a higher sendq as they are sent more data */ - sendq=2 megabytes; + sendq = 2 megabytes; }; /* listen {}: contain information about the ports ircd listens on (OLD P:) */ @@ -1096,7 +1096,7 @@ general { /* dots in ident: the amount of '.' characters permitted in an ident * reply before the user is rejected. */ - dots_in_ident=2; + dots_in_ident = 2; /* min nonwildcard: the minimum non wildcard characters in k/d/g lines * placed via the server. klines hand placed are exempt from limits. @@ -1212,36 +1212,36 @@ general { stats_e_disabled = no; /* stats c oper only: make stats c (connect {}) oper only */ - stats_c_oper_only=no; + stats_c_oper_only = no; /* stats h oper only: make stats h (hub_mask/leaf_mask) oper only */ - stats_h_oper_only=no; + stats_h_oper_only = no; /* stats y oper only: make stats y (class {}) oper only */ - stats_y_oper_only=no; + stats_y_oper_only = no; /* stats o oper only: make stats o (opers) oper only */ - stats_o_oper_only=yes; + stats_o_oper_only = yes; /* stats P oper only: make stats P (ports) oper only * NOTE: users doing stats P will never be given the ips that the * server listens on, simply the ports. */ - stats_P_oper_only=no; + stats_P_oper_only = no; /* stats i oper only: make stats i (auth {}) oper only. set to: * yes: show users no auth blocks, made oper only. * masked: show users first matching auth block * no: show users all auth blocks. */ - stats_i_oper_only=masked; + stats_i_oper_only = masked; /* stats k/K oper only: make stats k/K (klines) oper only. set to: * yes: show users no auth blocks, made oper only * masked: show users first matching auth block * no: show users all auth blocks. */ - stats_k_oper_only=masked; + stats_k_oper_only = masked; /* map oper only: make /map oper only */ map_oper_only = no;