blob: 346756405071df1e73921e4163f928316ac02e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* TkServ configuration definitions
*
* Make sure the ircd conf files are located in the server_bin_dir
* (see Makefile) and that USE_SERVICES is #define'd if you intend
* to use this service.
*
*/
/* This will be shown on ADMIN requests */
#define TKSERV_ADMIN_NAME "Admin: Someone Somewhere"
#define TKSERV_ADMIN_CONTACT "Mail: i.didnt@edit.my.ADMIN.info"
#define TKSERV_ADMIN_OTHER "SomeAdmin@IRCNet"
/* This is the name of the service which appears on /servlist */
#define TKSERV_NAME "TkServ"
/* The description of the service (appears on /SERVLIST) */
#define TKSERV_DESC "Temporary K-line Service"
/* The distribution of the server */
#define TKSERV_DIST "*"
/* The password for the service (must match the one in the S: line) */
#define TKSERV_PASSWORD "blah"
/* Debugging (displays service<->server traffic to standard output) */
#undef TKSERV_DEBUG
/* The name of the ircd config file backup (suffix after CPATH) */
#define TKSERV_IRCD_CONFIG_BAK CPATH".tkserv"
/* The name of the ircd temp config file (suffix after CPATH) */
#define TKSERV_IRCD_CONFIG_TMP CPATH".tmp"
|