From: Gabriel B. <sh...@us...> - 2005-07-09 15:11:20
|
Update of /cvsroot/solidircd/solidircd-stable/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8329/doc Modified Files: reference.conf template.conf Log Message: Documentation update. Index: template.conf =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/template.conf,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** template.conf 9 Jul 2005 03:09:10 -0000 1.4 --- template.conf 9 Jul 2005 15:11:12 -0000 1.5 *************** *** 99,103 **** auto_umode_R; # Only registered users can query other users. auto_umode_v; # Will automaticly set the hostmaskin mode for users. ! bot_class bot; # ircbot class --- 99,103 ---- auto_umode_R; # Only registered users can query other users. auto_umode_v; # Will automaticly set the hostmaskin mode for users. ! bot_class bot; # Search bots class exception. *************** *** 206,215 **** /* uncomment this if ssl is enable. ! * ssl { ! * certificate "ssl/vgc.pem"; # Server Certificate ! * keyfile "ssl/vgckey.pem"; # Keys for the server ! * allow_umodez; # Allow SSL users to change UMODE_z ! * }; ! * */ --- 206,215 ---- /* uncomment this if ssl is enable. ! ssl { ! certificate "ssl/vgc.pem"; # Server Certificate ! keyfile "ssl/vgckey.pem"; # Keys for the server ! allow_umodez; # Allow SSL users to change UMODE_z ! }; ! */ *************** *** 351,355 **** ! /* connection class for bots */ class { name bot; # Class name --- 351,355 ---- ! /* connection exception class for search bots such as searchirc & netsplit.de */ class { name bot; # Class name Index: reference.conf =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/reference.conf,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** reference.conf 9 Jul 2005 01:22:49 -0000 1.2 --- reference.conf 9 Jul 2005 15:11:12 -0000 1.3 *************** *** 99,102 **** --- 99,103 ---- auto_umode_R; # Only registered users can query other users. auto_umode_v; # Will automaticly set the hostmaskin mode for users. + bot_class bot; # Search bots class exception. *************** *** 190,193 **** --- 191,219 ---- + /* Client Side SSL + * Issues to note... + * Information you exchange with an IRC server over a secure connection can not be viewed or changed by others. + * However, be aware that traffic between public servers on a network is exchanged over plain, open unencrypted lines. + * This means that if you want to be sure that your communication is secure, you and the person with whom you want to + * communicate securely should both connect to the same SSL-capable server, and communicate via a query window. + * If talking on a channel, be aware that everyone on the channel must be on a secure connection. + * If one person on the channel is not on a secure connection, your communications on that channel will not be secure. + * + * To create your SSL certificate run the /makecert.sh file in ircd/ssl/. + */ + + + + /* uncomment this if ssl is enable. + ssl { + certificate "ssl/vgc.pem"; # Server Certificate + keyfile "ssl/vgckey.pem"; # Keys for the server + allow_umodez; # Allow SSL users to change UMODE_z + }; + + */ + + + /* Port [REQUIRED] * The Port blocks define where the server will accept connections. At *************** *** 325,331 **** ! /* connection class for bots */ class { ! name bot_class; # Class name maxusers 100; # Maximum connections pingfreq 90; # Check idle connections every N seconds --- 351,357 ---- ! /* connection exception class for search bots such as searchirc & netsplit.de */ class { ! name bot; # Class name maxusers 100; # Maximum connections pingfreq 90; # Check idle connections every N seconds *************** *** 336,340 **** allow { host *@atte.netsplit.de; # Allows this host to get our channel list ! class bot_class; # This is the class used for bots. }; --- 362,366 ---- allow { host *@atte.netsplit.de; # Allows this host to get our channel list ! class bot; # This is the class used for bots. }; *************** *** 342,346 **** allow { host *@data.searchirc.org; # Allows this host to get our channel list ! class bot_class; # This is the class used for bots. }; --- 368,372 ---- allow { host *@data.searchirc.org; # Allows this host to get our channel list ! class bot; # This is the class used for bots. }; *************** *** 797,820 **** - /* Client Side SSL - * Issues to note... - * Information you exchange with an IRC server over a secure connection can not be viewed or changed by others. - * However, be aware that traffic between public servers on a network is exchanged over plain, open unencrypted lines. - * This means that if you want to be sure that your communication is secure, you and the person with whom you want to - * communicate securely should both connect to the same SSL-capable server, and communicate via a query window. - * If talking on a channel, be aware that everyone on the channel must be on a secure connection. - * If one person on the channel is not on a secure connection, your communications on that channel will not be secure. - * - * To create your SSL certificate run the /makecert.sh file in ircd/ssl/. - */ - - - - /* uncomment this if ssl is enable. - * ssl { - * certificate "ssl/vgc.pem"; # Server Certificate - * keyfile "ssl/vgckey.pem"; # Keys for the server - * allow_umodez; # Allow SSL users to change UMODE_z - * }; - * - */ \ No newline at end of file --- 823,824 ---- |