From 23c76fcbbaad774c58e5259a04fafc69e8a6b2d6 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Wed, 3 Dec 2003 12:11:30 +0000
Subject: [PATCH] The new services configuration file (for v3.11) - replaces
 services.cfg.

---
 ctrl/services.ini | 54 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
 create mode 100644 ctrl/services.ini

diff --git a/ctrl/services.ini b/ctrl/services.ini
new file mode 100644
index 0000000000..55efb318a6
--- /dev/null
+++ b/ctrl/services.ini
@@ -0,0 +1,54 @@
+; ctrl/services.ini file
+
+; Each section is a service, the [section name] is the service/protocol name
+
+; Supported options (separated with |):
+; 	NO_HOST_LOOKUP
+;	NO_RECYCLE
+;	MUTE
+;	UDP
+;	STATIC
+;	LOOP
+;	NATIVE
+;	FULL_ACCEPT
+
+; Network News Transfer Protocol (NNTP)
+[NNTP]
+Port=119
+MaxClients=10
+Options=0
+Command=nntpservice.js -f
+
+; HTTP NodeList Service (this is not a "Web server")
+[HTTP]
+Port=8080
+MaxClients=10
+Options=0
+Command=nodelist-html.js -l -r 30
+
+; Finger Service
+[Finger]
+Port=79
+MaxClients=10
+Options=NO_HOST_LOOKUP
+Command=fingerservice.js
+
+; Finger Service, fast (for inter-BBS instant-messaging)
+[UDP-Finger]
+Port=79
+MaxClients=10
+Options=UDP | NO_HOST_LOOKUP
+Command=fingerservice.js
+
+; Archaic HTTP-like protocol
+[Gopher]
+Port=70
+MaxClients=10
+Options=0
+Command=gopherservice.js
+
+; Internet Relay Chat (IRC) Daemon (Server)
+[IRC]
+Port=6667
+Options=STATIC | LOOP
+Command=ircd.js
-- 
GitLab