ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-8/etc/example.conf
(Generate patch)

Comparing ircd-hybrid-7.2/etc/example.conf.in (file contents):
Revision 912 by michael, Wed Nov 7 22:47:44 2007 UTC vs.
Revision 951 by michael, Wed Jul 22 10:47:24 2009 UTC

# Line 90 | Line 90 | serverinfo {
90          max_clients = 512;
91  
92          /*
93 <         * rsa key: the path to the file containing our rsa key for cryptlink.
93 >         * rsa_private_key_file: the path to the file containing our
94 >         * rsa key for cryptlink.
95           *
96           * Example command to store a 2048 bit RSA keypair in
97           * rsa.key, and the public key in rsa.pub:
# Line 104 | Line 105 | serverinfo {
105          #rsa_private_key_file = "/usr/local/ircd/etc/rsa.key";
106  
107          /*
108 <         * ssl certificate: the path to the file containing our ssl certificate
108 >         * ssl_certificate_file: the path to the file containing our
109 >         * ssl certificate
110           * for encrypted client connection.
111           *
112           * This assumes your private RSA key is stored in rsa.key. You
# Line 259 | Line 261 | listen {
261           * unless you are an administrator.
262           *
263           * NOTE: The "flags" directive has to come before "port".  Always!
264 +         *
265 +         * Currently available flags are:
266 +         *
267 +         *  ssl    - Port is for SSL client connections only
268 +         *  server - Only server connections are permitted
269 +         *  hidden - Port is hidden from /stats P
270           */
271          flags = hidden, ssl;
272          host = "192.168.0.1";
# Line 390 | Line 398 | operator {
398           *
399           * +b - bots         - See bot and drone flooding notices
400           * +c - cconn        - Client connection/quit notices
401 +         * +C - cconn_full   - Client connection/quit notices full
402           * +D - deaf         - Don't receive channel messages
403           * +d - debug        - See debugging notices
404           * +f - full         - See I: line full notices
# Line 421 | Line 430 | operator {
430           * kline:        allows KILL, KLINE and DLINE      (OLD 'K' flag)
431           * unkline:      allows UNKLINE and UNDLINE        (OLD 'U' flag)
432           * gline:        allows GLINE                      (OLD 'G' flag)
433 <         * xline:         allows XLINE                     (OLD 'X' flag)
433 >         * xline:        allows XLINE                      (OLD 'X' flag)
434           * operwall:     allows OPERWALL
435           * nick_changes: allows oper to see nickchanges    (OLD 'N' flag)
436           *               via usermode +n
# Line 659 | Line 668 | kill {
668   };
669  
670   kill {
671 <        user = "^O[[:alpha:]]?[[:digit:]]+(x\.o|\.xo)$@^[[:alnum:]]{4}\.evilnet.org$";
671 >        user = "^O[[:alpha:]]?[[:digit:]]+(x\.o|\.xo)$@^[[:alnum:]]{4}\.evilnet.tld$";
672 >
673 >        /*
674 >         * NOTE: You have to set type=regex; when using a regular expression
675 >         * based user entry
676 >         */
677          type = regex;
678   };
679  
# Line 717 | Line 731 | gecos {
731  
732   gecos {
733          name = "^\[J[0o]hn Do[3e]\]-[0-9]{2,5}$";
734 +
735 +        /*
736 +         * NOTE: You have to set type=regex; when using a regular expression
737 +         * based name entry
738 +         */
739          type = regex;
740   };
741  
# Line 731 | Line 750 | channel {
750           *
751           *   2 | bold
752           *   3 | mirc color
753 <         *  15 | plain text
753 >         *  15 | plain text
754           *  22 | reverse
755           *  31 | underline
756           * 160 | non-breaking space
# Line 772 | Line 791 | channel {
791           * knock_delay: The amount of time a user must wait between issuing
792           * the knock command.
793           */
794 <        knock_delay = 1 minutes;
794 >        knock_delay = 5 minutes;
795  
796          /*
797           * knock_delay_channel: How often a knock to any specific channel
# Line 874 | Line 893 | serverhide {
893          hidden_name = "*.hidden.com";
894  
895          /*
896 <         * hide_server_ips: If this is disabled, opers will be unable to see servers
897 <         * ips and will be shown a masked ip, admins will be shown the real ip.
898 <         *
899 <         * If this is enabled, nobody can see a servers ip.  *This is a kludge*, it
900 <         * has the side effect of hiding the ips everywhere, including logfiles.
896 >         * hide_server_ips: If this is disabled, opers will be unable to see
897 >         * servers ips and will be shown a masked ip, admins will be shown the
898 >         * real ip.
899 >         *
900 >         * If this is enabled, nobody can see a servers ip. *This is a kludge*,
901 >         * it has the side effect of hiding the ips everywhere, including
902 >         * logfiles.
903           *
904           * We recommend you leave this disabled, and just take care with who you
905           * give admin=yes; to.
# Line 891 | Line 912 | serverhide {
912   * compiled in options in config.h.  The general block is read at start time.
913   */
914   general {
915 <        /* max_watch: maximum WATCH entries */
915 >        /* max_watch: maximum WATCH entries a client can have. */
916          max_watch = 64;
917  
918          /*
# Line 1157 | Line 1178 | general {
1178           *
1179           * +b - bots         - See bot and drone flooding notices
1180           * +c - cconn        - Client connection/quit notices
1181 +         * +C - cconn        - Client connection/quit notices full
1182           * +D - deaf         - Don't receive channel messages
1183           * +d - debug        - See debugging notices
1184           * +f - full         - See I: line full notices
# Line 1273 | Line 1295 | glines {
1295  
1296   modules {
1297          /*
1298 <         * module path: other paths to search for modules specified below
1298 >         * path: other paths to search for modules specified below
1299           * and in /modload.
1300           */
1301          path = "@LIBDIR@/modules";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines