repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 03d5fd6cb76ab0a7f008e6370be2248f6c0241d8:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 03d5fd6cb76ab0a7f008e6370be2248f6c0241d8
Author: Alexander Barton 
Date:   Wed Dec 18 12:19:07 2002 +0000

    - Updated documentation.

diff --git a/INSTALL b/INSTALL
index febac7232abc1884a9d39fb8a68df73acf1b9f98..
index ..2db1b057a94c63266c19ebe08aef181443f189b5 100644
--- a/INSTALL
+++ b/INSTALL
@@ -18,6 +18,20 @@
  +-----------------------------------------------------------------------+


+0. Update von frueheren Versionen
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Unterschiede zu Version 0.5.x
+
+- Ab Version 0.6.0 werden asyncrone Passwoerter zur Identifikation anderer
+  Server, die Variable "Password" in [Server]-Abschnitten wird nicht mehr
+  unterstuetzt. Passwoerter fuer Server-Server-Links werden nun mit den
+  Variablen "MyPassword" und "PeerPassword" angegeben.
+
+- Neue Konfigurationsvariablen, Sektion [Global]: MaxConnections, MaxJoins
+  (vgl. auch Beispiel-Konfiguration "doc/sample-ngircd.conf"!)
+
+
 I. Standard-Installation
 ~~~~~~~~~~~~~~~~~~~~~~~~

@@ -145,4 +159,4 @@ Server nach der Ausgabe wieder.


 -- 
-$Id: INSTALL,v 1.8 2002/09/16 11:03:05 alex Exp $
+$Id: INSTALL,v 1.9 2002/12/18 12:19:07 alex Exp $
diff --git a/NEWS b/NEWS
index 551183d96e0fd41d5b120f0202f68b4f3eb45e6d..
index ..07b21002e6e263379c9315dd85cdb895ae6f46db 100644
--- a/NEWS
+++ b/NEWS
@@ -14,8 +14,6 @@ ngIRCd CVS-HEAD

   - beim Schliessen einer Verbindung zeigt der Server nun vor dem ERROR
     noch eine Statistik ueber die empfangene und gesendete Datenmenge an.
-  - Clients werden beim Connect mit NOTICEs ueber den Status der Resolver-
-    Subprozesse informiert.
   - Connection-Strukturen werden nun "pool-weise" verwaltet; der Pool wird
     bei Bedarf bis zu einem konfigurierten Limit vergroessert.
   - Mit der neuen Konfigurationsvariable "MaxConnections" (Sekion "Global")
@@ -37,6 +35,9 @@ ngIRCd CVS-HEAD
     nicht, wird automatisch unkomprimiert kommuniziert. Das Verfahren ist
     kompatibel mit dem Original-ircd 2.10.3, d.h. beide Server koennen
     miteinander ueber komprimiert Links kommunizieren.
+  - neue Konfigurations-Variable "MaxJoins": Hiermit kann die maximale Zahl
+    der Channels, in denen ein User Mitglied sein kann, begrent werden.
+  - neue Channel-Modes l (User-Limit) und k (Channel-Key) implementiert.

 ngIRCd 0.5.0, 20.09.2002

@@ -138,4 +139,4 @@ ngIRCd 0.0.1, 31.12.2001


 -- 
-$Id: NEWS,v 1.44 2002/11/26 23:28:49 alex Exp $
+$Id: NEWS,v 1.45 2002/12/18 12:19:07 alex Exp $
diff --git a/doc/en/INSTALL b/doc/en/INSTALL
index 59ae7656f31599eac976755deaad649f0590b424..
index ..40704b8b9df0ec5f53a85a9f4618f3dc5aaf7429 100644
--- a/doc/en/INSTALL
+++ b/doc/en/INSTALL
@@ -11,6 +11,19 @@



+0. Upgrade Information
+~~~~~~~~~~~~~~~~~~~~~~
+
+Differences to version 0.5.x
+
+- Starting with version 0.6.0, other servers are identified using asyncronous
+  passwords: therefore the variable "Password" in [Server]-sections has been
+  replaced by "MyPassword" and "PeerPassword".
+
+- New configuration variables, section [Global]: MaxConnections, MaxJoins
+  (see example configuration file "doc/en/sample-ngircd.conf"!).
+
+
 I. Standard-Installation
 ~~~~~~~~~~~~~~~~~~~~~~~~

@@ -123,4 +136,4 @@ number. In both cases the server exits after the output.


 -- 
-$Id: INSTALL,v 1.2 2002/05/20 12:02:58 alex Exp $
+$Id: INSTALL,v 1.3 2002/12/18 12:19:07 alex Exp $
diff --git a/doc/en/sample-ngircd.conf b/doc/en/sample-ngircd.conf
index 1abf05d4b4cb8cc4bc10a53145059412efbd6201..
index ..477423e81f03ed06de30ce04c5ceac182221db54 100644
--- a/doc/en/sample-ngircd.conf
+++ b/doc/en/sample-ngircd.conf
@@ -1,4 +1,4 @@
-# $Id: sample-ngircd.conf,v 1.3 2002/12/14 13:32:30 alex Exp $
+# $Id: sample-ngircd.conf,v 1.4 2002/12/18 12:19:07 alex Exp $

 #
 # This is a sample configuration for the ngIRCd, which must adept to the
@@ -98,12 +98,12 @@
 	# ngIRCd tries the next one of this group.
 	# ATTENTION: Server-groups will only work if you defined a port!

-	# Hostname of the server
-	;Host = connect-to-host.the.net
-
 	# IRC-name of the server
 	;Name = irc2.the.net

+	# Hostname of the server
+	;Host = connect-to-host.the.net
+
 	# Port of the server, to which the ngIRCd should connect. If you
 	# assign no port, the ngIRCd waits for an answer of that server.
 	;Port = 6666
diff --git a/doc/sample-ngircd.conf b/doc/sample-ngircd.conf
index 41629e1c2713df17a7636ba2888d9851d05695c9..
index ..6a7c37158b358c65b384562b2fe3b5c29b2a3f1a 100644
--- a/doc/sample-ngircd.conf
+++ b/doc/sample-ngircd.conf
@@ -1,4 +1,4 @@
-# $Id: sample-ngircd.conf,v 1.16 2002/12/14 13:32:30 alex Exp $
+# $Id: sample-ngircd.conf,v 1.17 2002/12/18 12:19:07 alex Exp $

 #
 # Das ist eine Beispiel-Konfiguration fuer den ngIRCd, die an die
@@ -119,12 +119,12 @@
 	# die Gegenseite angegeben hat!
 	#

-	# DNS-Hostname des Servers
-	;Host = connect-to-host.the.net
-
 	# IRC-Name des Servers
 	;Name = irc2.the.net

+	# DNS-Hostname des Servers
+	;Host = connect-to-host.the.net
+
 	# Port, zu dem dieser Server eine Verbindung herstellen soll. Wird
 	# kein Port angegeben, so wird auf eine Verbindung der Gegenseite
 	# gewartet.

-----END OF PAGE-----