]> jfr.im git - irc/evilnet/x3.git/blame - FAQ
python is still crashing, but iv done some debug work and documentation that i dont...
[irc/evilnet/x3.git] / FAQ
CommitLineData
ceafd592 1X3 Frequently Asked Questions
d76ed9a9 2-------------------------------
3
4This FAQ assumes that your services are named NickServ, ChanServ and
5OpServ respectively.
6
ceafd592 7Q1) How do I set up X3?
d76ed9a9 8A1) Read the README and INSTALL files, especially INSTALL.
9
ceafd592 10Q2) How do I set up my IRC server so X3 talks to it?
d76ed9a9 11A2) That depends on which IRC server you use. Check its
ceafd592 12documentation. #evilnet will not support ircd questions other
13than Nefarious IRCu
d76ed9a9 14
15Q3) I get "You must first authenticate with NickServ", help!
16A3) To register an account, /msg NickServ@services.example.com
17register YourName Password. You must be a global IRC operator to
ceafd592 18register the first account; X3 gives the first account "root" level
d76ed9a9 19(1000) access. To log in afterwards, use the "auth" command instead
20of "register".
21
22Q4) I do not like having to type "/msg NickServ@services.example.com"
23for all of my commands. How can I change that?
24A4) If you want to disable that for the auth command, use "/msg OpServ
25modcmd NickServ.auth flags -qualified". However, that is a BAD idea:
26if you have an auto-perform to log in, and you connect to some other
27IRC network, you will send your password to whoever or whatever is
28named NickServ on that network.
29
30Q5) When I try to register a channel with ChanServ, it tells me I have
31to have "security override" on. Why?
ceafd592 32A5-1) X3's default configuration is to only allow network staff to
d76ed9a9 33register channels. For IRC operators and network helpers (users with
34account flag +H), security override can be enabled by sending "/msg
35ChanServ god on". For support helpers (users with account flag +h),
36security override is enabled when the user is in the configured
37support channel.
38A5-2) If you want to allow anyone to register channels, use "/msg
39OpServ modcmd ChanServ.register flags -helping".
40
41Q6) How do I enable HelpServ?
42A6) When you run the "configure" script, you must enable the helpserv
43module; for example, "./configure --enable-modules=helpserv". After
ceafd592 44you compile and start X3 with that option, "/msg OpServ bind OpServ
d76ed9a9 45helpserv *helpserv.helpserv". After that, you can use "/msg OpServ
46helpserv help" and "/msg OpServ helpserv register"; the "helpserv"
47command acts as a gateway into the HelpServ system.
48
49Q7) How do I enable MemoServ?
50A7) When you run the "configure" script, you must enable the MemoServ
51module; for example, "./configure --enable-modules=memoserv". Then
52see the comment near the start of src/mod-memoserv.c for configuration
53options.
697f4c9a 54
55Q8) How do I enable both HelpServ and MemoServ?
56A8) In addition to the post-install configuration steps above, you
57must mention both when you run the configure script. For example, run
58it using "./configure --enable-modules=memoserv,helpserv". (You may
59add the snoop and/or sockcheck modules as well; separate the module
60names with commas.)