ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/doc/reference.conf
(Generate patch)

Comparing ircd-hybrid-8/doc/example.conf (file contents):
Revision 1458 by michael, Wed Jun 20 19:05:27 2012 UTC vs.
Revision 1459 by michael, Fri Jul 6 14:23:09 2012 UTC

# Line 896 | Line 896 | general {
896          /* max_watch: maximum WATCH entries a client can have. */
897          max_watch = 60;
898  
899 +        /* gline_enable: enable glines, network wide temp klines */
900 +        gline_enable = yes;
901 +
902 +        /*
903 +         * gline_duration: the amount of time a gline will remain on your
904 +         * server before expiring
905 +         */
906 +        gline_duration = 1 day;
907 +
908 +        /*
909 +         * gline_request_duration:  how long a pending G-line can be around.
910 +         * 10 minutes should be plenty
911 +         */
912 +        gline_request_duration = 10 minutes;
913 +
914          /*
915           * gline_min_cidr: the minimum required length of a CIDR bitmask
916           * for IPv4 based glines
# Line 1192 | Line 1207 | general {
1207          throttle_time = 10;
1208   };
1209  
1195 glines {
1196        /* enable: enable glines, network wide temp klines */
1197        enable = yes;
1198
1199        /*
1200         * duration: the amount of time a gline will remain on your
1201         * server before expiring
1202         */
1203        duration = 1 day;
1204
1205        /*
1206         * log: which types of rules you want to log when triggered
1207         * (choose reject or block)
1208         */
1209        log = reject, block;
1210
1211        /*
1212         * NOTE: gline ACLs can cause a desync of glines throughout the
1213         * network, meaning some servers may have a gline triggered, and
1214         * others may not. Also, you only need insert rules for glines
1215         * that you want to block and/or reject. If you want to accept and
1216         * propagate the gline, do NOT put a rule for it.
1217         */
1218
1219        /* user@host for rule to apply to */
1220        user = "god@I.still.hate.packets";
1221        /* server for rule to apply to */
1222        name = "hades.arpa";
1223
1224        /*
1225         * action: action to take when a matching gline is found. options are:
1226         *  reject - do not apply the gline locally
1227         *  block  - do not propagate the gline
1228         */
1229        action = reject, block;
1230
1231        user = "god@*";
1232        name = "*";
1233        action = block;
1234 };
1235
1210   modules {
1211          /*
1212           * path: other paths to search for modules specified below

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)