-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathFAQ
58 lines (49 loc) · 2.67 KB
/
FAQ
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
X3 Frequently Asked Questions
-------------------------------
This FAQ assumes that your services are named NickServ, ChanServ and
OpServ respectively.
Q1) How do I set up X3?
A1) Read the README and INSTALL files, especially INSTALL.
Q2) How do I set up my IRC server so X3 talks to it?
A2) That depends on which IRC server you use. Check its
documentation. Essentially you add a connect block for X3 in
ircd.conf and point to that at the top of x3.conf. You'll also
need a UWORLD block etc.
Q3) I get "You must first authenticate with NickServ", help!
A3) To register an account, /msg [email protected]
register YourName Password. You must be a global IRC operator to
register the first account; X3 gives the first account "root" level
(1000) access. To log in afterwards, use the "auth" command instead
of "register".
Q4) I do not like having to type "/msg [email protected]"
for all of my commands. How can I change that?
A4) If you want to disable that for the auth command, use "/msg OpServ
modcmd NickServ.auth flags -qualified". However, that is a BAD idea:
if you have an auto-perform to log in, and you connect to some other
IRC network, you will send your password to whoever or whatever is
named NickServ on that network.
Q5) How do I restrict all users from registering channels?
A5) /msg opserv modcmd ChanServ.register flags +helping
This will allow only network staff to register channels. For IRC
operators and network helpers (users with account flag +H), security
override can be enabled by sending "/msg ChanServ god on". For
support helpers (users with account flag +h), security override is
enabled when the user is in the configured support channel.
Q6) How do I enable HelpServ?
A6) When you run the "configure" script, you must enable the helpserv
module; for example, "./configure --enable-modules=helpserv". After
you compile and start X3 with that option, "/msg OpServ bind OpServ
helpserv *helpserv.helpserv". After that, you can use "/msg OpServ
helpserv help" and "/msg OpServ helpserv register"; the "helpserv"
command acts as a gateway into the HelpServ system.
Q7) How do I enable MemoServ?
A7) When you run the "configure" script, you must enable the MemoServ
module; for example, "./configure --enable-modules=memoserv". Then
see the comment near the start of src/mod-memoserv.c for configuration
options.
Q8) How do I enable both HelpServ and MemoServ?
A8) In addition to the post-install configuration steps above, you
must mention both when you run the configure script. For example, run
it using "./configure --enable-modules=memoserv,helpserv". (You may
add the snoop and/or sockcheck modules as well; separate the module
names with commas.)