[IRC-Dev CVS] [CVS] Module ircd-ircdev: Change committed
Brought to you by:
zolty
From: Toni G. <zo...@us...> - 2005-03-21 17:26:53
|
CVSROOT : /cvsroot/irc-dev Module : ircd-ircdev Commit time: 2005-03-21 17:26:42 UTC Modified files: doc/ircd.sample-en.conf doc/ircd.sample-es.conf doc/en/snomask.txt Log message: Actualizacion ejemplos ircd.conf ---------------------- diff included ---------------------- Index: ircd-ircdev/doc/en/snomask.txt diff -u ircd-ircdev/doc/en/snomask.txt:1.1 ircd-ircdev/doc/en/snomask.txt:1.2 --- ircd-ircdev/doc/en/snomask.txt:1.1 Wed Jan 5 10:00:34 2005 +++ ircd-ircdev/doc/en/snomask.txt Mon Mar 21 09:26:32 2005 @@ -1,4 +1,4 @@ -$Id: snomask.txt,v 1.1 2005/01/05 18:00:34 zolty Exp $ +$Id: snomask.txt,v 1.2 2005/03/21 17:26:32 zolty Exp $ SNOMASK - Server Notice Masks Written by Ghostwolf 18th June 1997 @@ -32,9 +32,11 @@ 4096 SNO_THROTTLE 0x1000 /* host throttle add/remove notices */ 8192 SNO_OLDREALOP 0x2000 /* old oper-only messages */ 16384 SNO_CONNEXIT 0x4000 /* client connect/exit (ugh) */ + 32768 SNO_AUTO 0x8000 /* AUTO G-Lines */ + 65536 SNO_DEBUG 0x10000 /* debugging messages (DEBUGMODE only) */ standard +s SNO_DEFAULT (SNO_NETWORK | SNO_OPERKILL | SNO_GLINE) - standard +s when +o/O SNO_DEFAULT | SNO_HACK2 | SNO_HACK4 | SNO_OLDSNO) + standard +s when +o/O SNO_DEFAULT | SNO_HACK2 | SNO_HACK4 | SNO_THROTTLE | SNO_OLDSNO) only opers may set SNO_OPER (SNO_CONNEXIT | SNO_OLDREALOP) Index: ircd-ircdev/doc/ircd.sample-en.conf diff -u ircd-ircdev/doc/ircd.sample-en.conf:1.14 ircd-ircdev/doc/ircd.sample-en.conf:1.15 --- ircd-ircdev/doc/ircd.sample-en.conf:1.14 Wed Mar 9 10:12:32 2005 +++ ircd-ircdev/doc/ircd.sample-en.conf Mon Mar 21 09:26:29 2005 @@ -417,9 +417,7 @@ # assigned one or two uplinks to which your server can connect. # If your uplink(s) also connect to other servers than yours (which is # probable), you need to define your uplink as being allowed to "hub". -# To do this, set "hub = yes;" -# You can also force a server(even one that doesn't connect to you) -# to be a leaf with "leaf = yes;" +# See the Connect block documentation for details on how to do that. UWorld { name = "luz.irc-dev.net"; @@ -596,9 +594,11 @@ # # and the default setting. # }; # -# The encrypted password is optional. If you wish to encrypt your -# password, there is a utility in the ircd. Please read the file -# tools/README. +# By default, the password is hashed using the system's native crypt() +# function. Other password mechanisms are available; the umkpasswd +# utility from the ircd directory can hash passwords using those +# mechanisms. +# # All privileges are shown with their default values; if you wish to # override defaults, you should set only those privileges for the # operator. Listing defaulted privileges just makes things harder to Index: ircd-ircdev/doc/ircd.sample-es.conf diff -u ircd-ircdev/doc/ircd.sample-es.conf:1.10 ircd-ircdev/doc/ircd.sample-es.conf:1.11 --- ircd-ircdev/doc/ircd.sample-es.conf:1.10 Wed Mar 9 10:12:32 2005 +++ ircd-ircdev/doc/ircd.sample-es.conf Mon Mar 21 09:26:31 2005 @@ -402,7 +402,7 @@ # mejor no ser molestado con preguntas con respeto al IRC... Motd { host = "*.irc-dev.net"; - file := "irc-dev.motd"; + file = "irc-dev.motd"; }; # [Uworld] @@ -435,9 +435,8 @@ # Si estos servidores a su vez se conecta a otros servidores que el tuyo # (lo que es probable), necesitas definir el servidor al que te conectas # con permiso como "hub". -# Para hacer esto, ajusta "hub = yes;" -# Puedes tambien forzar un servidor (uno que que no conecte con usted) -# a ser un "leaf" con "leaf = yes;" +# Lea la documentación del bloque "Connect" para más detalles de como se +# hace eso. Uworld { name = "luz.irc-dev.net"; @@ -623,8 +622,11 @@ # # defecto. # }; # -# La contraseña cifrada es opcional. Si deseas cifrar tu contraseña, hay -# una utilidad en el ircd. Lea por favor el archivo tools/README.es +# Por defecto, la contraseña se encripta con la función nativa crypt() +# del sistema. Otros mecanismos de encriptación de contraseña están +# disponibles; la utilidad del "umkpasswd" en el directorio del ircd +# permite encriptar contraseñas utilizando otros mecanismos (SMD5, etc...) +# # Todos los privilegios son mostrados con los valores por defecto; Si # deseas eliminar los valores por defecto, debes fijar solamente esos # privilegios para el operador. Enumerar los privilegios omitidos apenas ----------------------- End of diff ----------------------- |