1 | INSTALLATION |
---|
2 | ============ |
---|
3 | |
---|
4 | If you installed BitlBee from a .deb or .rpm you probably don't have to do |
---|
5 | anything anymore for installation. Just skip this section. |
---|
6 | |
---|
7 | If you want to compile BitlBee yourself, that's fine. Just run ./configure |
---|
8 | to set up the build system. If configure succeeds, run make to build BitlBee. |
---|
9 | make install will move all the files to the right places. |
---|
10 | |
---|
11 | --- inetd installation |
---|
12 | |
---|
13 | After installation you have to set up inetd (you got that one running, |
---|
14 | right? If not, just take a look at utils/bitlbeed.c) to start BitlBee. You |
---|
15 | need to add BitlBee to inetd.conf, like this: |
---|
16 | |
---|
17 | 6667 stream tcp nowait nobody /usr/sbin/tcpd /usr/local/sbin/bitlbee |
---|
18 | |
---|
19 | Creating a special BitlBee user and running BitlBee with that UID (instead |
---|
20 | of just 'nobody') might be a good idea. |
---|
21 | |
---|
22 | *BSD/Darwin/OSX NOTE: Most *BSD inetds are more scrict than the one that |
---|
23 | comes with Linux systems. Possibly all non-Linux inetds are like this. They |
---|
24 | don't allow you to specify a port number in the inetd.conf entry, instead |
---|
25 | you have to put a service name there (one that is also mentioned in |
---|
26 | /etc/services). So if there's no line in /services for 6667/tcp (or whatever |
---|
27 | you choose), add it and use that name in the inetd.conf entry. |
---|
28 | |
---|
29 | -- xinetd installation |
---|
30 | |
---|
31 | Most machines use xinetd instead of inetd these days. If your machine runs |
---|
32 | xinetd, you can copy the bitlbee.xinetd file from the doc/ directory to your |
---|
33 | xinetd.d/ directory. Most likely you'll have to change a thing or two before |
---|
34 | it'll work. |
---|
35 | |
---|
36 | After configuring your (x)inetd, send the daemon a SIGHUP and things should |
---|
37 | work. If not, see your syslogs, since both daemons will complain there when |
---|
38 | something's wrong. |
---|
39 | |
---|
40 | Also, don't forget to create the configuration directory (/var/lib/bitlbee/ |
---|
41 | by default) and chown it to the UID BitlBee is running as. Make sure this |
---|
42 | directory is read-/writable by this user only. |
---|
43 | |
---|
44 | |
---|
45 | DEPENDENCIES |
---|
46 | ============ |
---|
47 | |
---|
48 | BitlBee's only real dependency is GLib. This is available on virtually every |
---|
49 | platform. Any recent version of GLib (2.0 or higher) will work. |
---|
50 | |
---|
51 | These days, MSN Messenger clients have to connect to the MS Passport servers |
---|
52 | through HTTPS. BitlBee can use several SSL libraries for this: GnuTLS, NSS |
---|
53 | (which comes with Mozilla) and OpenSSL. OpenSSL is not GPL-compatible in some |
---|
54 | situations, so using GnuTLS or NSS is preferred. However, especially on *BSD, |
---|
55 | OpenSSL can be considered part of the operating system, which eliminates the |
---|
56 | GPL incompatibility. |
---|
57 | |
---|
58 | The incompatibility is also the reason why the SSL library detection code |
---|
59 | doesn't attempt to use OpenSSL. If you want to use OpenSSL, you have to |
---|
60 | force configure to use it using the --ssl=openssl parameter. For more |
---|
61 | information about this problem, see the URL's configure will write to stdout |
---|
62 | when you attempt to use OpenSSL. |
---|
63 | |
---|
64 | |
---|
65 | PORTABILITY ISSUES |
---|
66 | ================== |
---|
67 | |
---|
68 | Cygwin NOTE: You'll need a glib installation to run BitlBee. However, Cygwin |
---|
69 | doesn't provide a glib package. You can download a binary tar.gz from: |
---|
70 | <http://my.dreamwiz.com/jbdoll/>. When you installed it, BitlBee should work |
---|
71 | fine. You'll probably like bitlbeed or xinetd to get it running on the |
---|
72 | network. |
---|
73 | |
---|
74 | On some non-Linux systems the program still suffers from some random bugs. |
---|
75 | Please do report them, we might be able to fix them if they're not too |
---|
76 | mysterious. |
---|
77 | |
---|
78 | Also, the configure script is known to not work very well with non-Bash |
---|
79 | shells, so if you experience problems, make sure you use bash to run the |
---|
80 | script. Same for the Makefile, it only works well with GNU make. (gmake on |
---|
81 | most BSD systems) |
---|
82 | |
---|
83 | If someone can tell us how to write Makefiles that work with both/all |
---|
84 | versions of make, we'd love to hear it, but it seems this just isn't |
---|
85 | possible. |
---|
86 | |
---|
87 | |
---|
88 | RUNNING ON SERVERS WITH MANY USERS |
---|
89 | ================================== |
---|
90 | |
---|
91 | BitlBee is not yet bug-free. Sometimes a bug causes the program to get into |
---|
92 | an infinite loop. Something you really don't want on a public server, |
---|
93 | especially when that machine is also used for other (mission-critical) things. |
---|
94 | For now we can't do much about it. We haven't seen that happen for a long |
---|
95 | time already on our own machines, but some people still manage to get |
---|
96 | themselves in nasty situations we haven't seen before. |
---|
97 | |
---|
98 | For now the best we can offer against this problem is bitlbeed, which allows |
---|
99 | you to setrlimit() the child processes to use no more than a specified |
---|
100 | number of CPU seconds. Not the best solution (not really a solution anyway), |
---|
101 | but certainly trashing one busy daemon process is better than trashing your |
---|
102 | whole machine. |
---|
103 | |
---|
104 | We don't believe adding a limit for bitlbee to /etc/security/limits.conf will |
---|
105 | work, because that file is only read by PAM (ie just for real login users, |
---|
106 | not daemons). |
---|
107 | |
---|
108 | See utils/bitlbeed.c for more information about the program. |
---|
109 | |
---|
110 | Just a little note: Now that we reach version 1.0, this shouldn't be that |
---|
111 | much of an issue anymore. However, on a public server, especially if you |
---|
112 | also use it for other things, it can't hurt to protect yourself against |
---|
113 | possible problems. |
---|
114 | |
---|
115 | |
---|
116 | USAGE |
---|
117 | ===== |
---|
118 | |
---|
119 | Not much to say here, it's all documented elsewhere already. Just connect to |
---|
120 | the new BitlBee IRC server and the bot (root) will tell you what to do. |
---|
121 | |
---|
122 | |
---|
123 | BACKGROUNDS |
---|
124 | =========== |
---|
125 | |
---|
126 | We are both console lovers. But it is annoying to have a few tty's open with |
---|
127 | chat things in them. IRC, ICQ, MSN, AIM, Jabber... For X there is Gaim, which |
---|
128 | supports many chatprotocols. Why wasn't there such a thing for the console? |
---|
129 | |
---|
130 | The idea to port Gaim was easily thought of, of course. But we liked our IRC |
---|
131 | clients. And we used it the most, so we used it best. Importing it into the |
---|
132 | IRC client was a nice idea. But what if someone liked a different client. |
---|
133 | Then (s)he had to duplicate our work. |
---|
134 | |
---|
135 | That's a shame, we thought. Doing work twice is pointless. So when Wilmer |
---|
136 | got the ingenious thought in his mind while farming, to create an IRC to |
---|
137 | other chatnetworks gateway, we were both so excited, that we started working |
---|
138 | on it almost immediately. And the result is BitlBee. |
---|
139 | |
---|
140 | |
---|
141 | WEBSITE |
---|
142 | ======= |
---|
143 | |
---|
144 | You can find new releases of BitlBee at: |
---|
145 | http://www.bitlbee.org/ |
---|
146 | |
---|
147 | The bug tracking system: |
---|
148 | http://bugs.bitlbee.org/ |
---|
149 | |
---|
150 | Our version control system is Bazaar-NG. Our repository is at: |
---|
151 | http://code.bitlbee.org/ |
---|
152 | |
---|
153 | |
---|
154 | A NOTE ON ENCRYPTION |
---|
155 | ==================== |
---|
156 | |
---|
157 | There used to be a note here about the simple obfuscation method used to |
---|
158 | make the passwords in the configuration files unreadable. However, BitlBee |
---|
159 | now uses a better format (and real encryption (salted MD5 and RC4)) to store |
---|
160 | the passwords. This means that people who somehow get their hands on your |
---|
161 | configuration files can't easily extract your passwords from them anymore. |
---|
162 | |
---|
163 | However, once you log into the BitlBee server and send your password, an |
---|
164 | intruder with tcpdump can still read your passwords. This can't really be |
---|
165 | avoided, of course. The new format is a lot more reliable (because it can't |
---|
166 | be cracked with just very basic crypto analysis anymore), but you still have |
---|
167 | to be careful. The main extra protection offered by the new format is that |
---|
168 | the files can only be cracked with some help from the user (by sending the |
---|
169 | password at login time). |
---|
170 | |
---|
171 | So if you run a public server, it's most important that you don't give root |
---|
172 | access to people who like to play with tcpdump. Also, it's a good idea to |
---|
173 | delete all *.nicks/*.accounts files as soon as BitlBee converted them to the |
---|
174 | new format (which happens as soon as the user logs in, it can't be done |
---|
175 | automatically because it needs the password for that account). You won't |
---|
176 | need them anymore (unless you want to switch back to an older BitlBee |
---|
177 | version) and they only make it easier for others to crack your passwords. |
---|
178 | |
---|
179 | |
---|
180 | LEGAL |
---|
181 | ===== |
---|
182 | |
---|
183 | BitlBee is distributed under the GPL (GNU General Public License). See the |
---|
184 | file COPYING for this license. |
---|
185 | |
---|
186 | Unfortunately some parts of the Gaim Jabber plugin (most notably the XML |
---|
187 | code) were licensed under the MPL (Mozilla Public License) version 1.1. We |
---|
188 | could not relicense this code under the GPL. As such it is still licensed |
---|
189 | under the MPL. The parts of the code to which this applies are marked as |
---|
190 | such. |
---|
191 | |
---|
192 | The MPL is provided in the file MPL-1.1.txt. This license is not GPL |
---|
193 | compatible. It is however a free software license. |
---|
194 | |
---|
195 | Another part (the md5 algorithm) is licensed under the Aladdin license. |
---|
196 | This license can be found in the files, to which this applies. |
---|
197 | |
---|
198 | The Yahoo! library used by BitlBee is libyahoo2 <http://libyahoo2.sf.net/>, |
---|
199 | also licensed under the GPL. |
---|
200 | |
---|
201 | |
---|
202 | BitlBee - An IRC to other chat networks gateway |
---|
203 | <http://www.bitlbee.org/> |
---|
204 | Copyright (C) 2002-2006 Wilmer van der Gaast <wilmer@gaast.net> |
---|
205 | and others |
---|