source: skype/README @ bd85ec5

Last change on this file since bd85ec5 was 5293707, checked in by Miklos Vajna <vmiklos@…>, at 2008-05-13T09:33:31Z

add more detailed info on how to install skype4py

  • Property mode set to 100644
File size: 9.7 KB
Line 
1= Skype plugin for BitlBee
2Miklos Vajna <vmiklos-at-vmiklos-dot-hu>
3
4== Status
5
6[Wilmer van der Gaast (author of BitlBee)]
7____
8Okay, this exists now, with lots of thanks to vmiklos for his *excellent*
9work!!
10
11It's not in the main BitlBee and it'll never be for various reasons, but
12because it's a plugin that shouldn't be a problem.
13____
14
15One day I browsed the BitlBee bugtracker and found
16http://bugs.bitlbee.org/bitlbee/ticket/82[this] ticket. Then after a while I
17returned and saw that it was still open. So I wrote it.
18
19It's pretty stable, I use it for my daily work. Being a plug-in, no patching
20is required, you can just install it after installing BitlBee itself.
21
22NOTE: You will see that this implementation of the Skype plug-in still requires
23a Skype instance to be running. This is because I'm not motivated to reverse
24engineer Skype's
25http://en.wikipedia.org/wiki/Skype_Protocol#Obfuscation_Layer[obfuscation
26layer]. (Not mentioning that you should ask your lawyer about if it is legal or
27not..)
28
29== Requirements
30
31* Skype >= 1.4.0.99. The latest version I've tested is 2.0.0.63.
32* BitlBee >= 1.1.1dev. The latest version I've tested is 1.2.
33* Skype4Py >= 0.9.28.7. Previous versions won't work due to API changes.
34* Python >= 2.5. Skype4Py does not work with 2.4.
35* PyGObject >= 2.8.0. Older versions are part of PyGTK. (And you don't want to
36  install GTK for nothing, right?)
37* pyopenssl or python-gnutls.
38
39`bitlbee-skype` has been tested under Linux and Mac OS X. Skype and Skype4py is
40available under Windows, too, so it probably works, but this has not been tested.
41
42== How to set it up
43
44Before you start. The setup is the following: BitlBee can't connect directly to
45Skype servers (the company's ones). It needs a running Skype client to do so.
46In fact BitlBee will connect to `skyped` (a tcp server, provided in this
47package) and `skyped` will connect to to your Skype client.
48
49NOTE: The order is important. First `skyped` starts Skype. Then `skyped` can
50connect to Skype, finally BitlBee can connect to `skyped`.
51
52- If you happen to be a happy Frugalware user:
53
54----
55# pacman-g2 -S bitlbee-skype skype4py
56----
57
58and you don't have to compile anything manually.
59
60- If you use Debian:
61
62----
63# apt-get install bitlbee-dev
64----
65
66and you have to install `bitlbee-skype` and `skype4py` from source.
67
68- Otherwise, you need the latest stable BitlBee release:
69
70----
71$ wget http://get.bitlbee.org/src/bitlbee-1.2.tar.gz
72$ tar xf bitlbee-1.2.tar.gz
73$ cd bitlbee-1.2
74----
75
76NOTE: You no longer need additional patches, as of version 1.1.1dev.
77
78- Now compile and install it:
79
80----
81$ ./configure
82$ make
83# make install install-dev
84----
85
86- Get the plugin code:
87
88----
89$ wget http://vmiklos.hu/project/bitlbee-skype/bitlbee-skype-@VERSION@.tar.gz
90$ tar xf bitlbee-skype-@VERSION@.tar.gz
91$ cd bitlbee-skype-@VERSION@
92----
93
94It doesn't matter where do you get it, it'll install the plugin to `/usr/local`
95by default (that's the location where BitlBee searches for plugins by default).
96
97- Compile and install it:
98
99----
100$ ./configure
101$ make
102# make install
103----
104
105- To install http://skype4py.sourceforge.net/[Skype4Py] from source:
106
107----
108$ tar -zxvf Skype4Py-x.x.x.x.tar.gz
109$ cd Skype4Py-x.x.x.x
110# python setup.py install
111----
112
113- Edit `/usr/local/etc/skyped/skyped.conf`: adjust `username` and `password`. The
114  `username` should be your Skype login and the `password` can be whatever you
115  want, but you will have to specify that one when adding the Skype account to
116  BitlBee (see later).
117
118NOTE: Here, and later - `/usr/local/etc` can be different on your installation
119if you used the `--sysconfdir` switch when running bitlbee-skype's `configure`.
120
121- Generate the SSL pem files:
122
123----
124# cd /usr/local/etc/skyped
125# openssl req -new -x509 -days 365 -nodes -config skyped.cnf -out skyped.cert.pem \
126        -keyout skyped.key.pem
127----
128
129NOTE: Maybe you want to adjust the permissions in the `/usr/local/etc/skyped`
130dir. For example make it readable by just your user.
131
132- If both pyopenssl and python-gnutls are available, then python-gnutls
133  will be used. This behaviour can be overwritten by:
134
135----
136$ export SKYPED_NO_GNUTLS=1
137----
138
139- Start `skyped` (the tcp server):
140
141----
142$ skyped
143----
144
145- Start your `IRC` client, connect to BitlBee and add your account:
146
147----
148account add skype <user> <pass>
149account set skype/server localhost
150----
151
152<user> should be your Skype account name, <pass> should be the one you declared
153in `skyped.conf`. If you want to run skyped on a remote machine, replace
154`localhost` with the name of the machine.
155
156If you are running skyped on a custom port:
157
158----
159account set skype/port <port>
160----
161
162If you want to set your full name (optional):
163
164----
165account set skype/display_name "John Smith"
166----
167
168If you want to see your skypeout contacts online as well (they are
169offline by default):
170
171----
172account set skype/skypeout_offline false
173----
174
175== Setting up Skype in a VNC server (optional)
176
177Optionally, if you want to run Skype on a server, you might want to setup up
178a `VNC` server as well. I used `tightvnc` but probably other `VNC` servers will
179work, too.
180
181First run
182
183----
184$ vncpasswd ~/.vnc/passwd
185----
186
187and create a password. You will need it at least once.
188
189Now create `~/.vnc/xstartup` with the following contents:
190
191----
192#!/bin/sh
193
194twm
195----
196
197Adjust the permissions:
198
199----
200$ chmod +x ~/.vnc/xstartup
201----
202
203Then start the server:
204
205----
206$ vncserver
207----
208
209Then connect to it, and set up Skype (username, password, enable
210auto-login, start skyped and allow the `SkypeApiPythonShell` client when
211Skype asks about it).
212
213Please be aware about that Skype has serious memory leak issues. After running
214with for a few weeks it may eat >300 MB of memory. Just don't forget to restart
215your VNC server regularly. (How ugly.)
216
217== Features
218
219- Download nicks and away statuses from Skype
220
221- Noticing joins / parts while we're connected
222
223- Sending messages
224
225- Receiving messages
226
227- Receiving away status changes
228
229- `skyped` (the tcp daemon that is a gateway between Skype and tcp)
230
231- Error handling when `skyped` is not running and when it exits
232
233- Marking received messages as seen so that Skype won't say there are unread messages
234
235- Adding / removing contacts
236
237- Set away state when you do a `/away`.
238
239- When you `account off`, Skype will set status to `Offline`
240
241- When you `account on`, Skype will set status to `Online`
242
243- Detect when somebody wants to add you and ask for confirmation
244
245- Detect when somebody wants to transfer a file
246
247- Group chat support:
248
249  * Detect if we're invited
250
251  * Send / receive group chat messages
252
253  * Invite others (using `/invite <nick>`)
254
255  * Part from group chats
256
257  * Starting a group chat (using `/j #nick`)
258
259- Topic changes in group chats:
260
261  * Show the current topic (if any) on join
262
263  * Notice when someone changes the topic
264
265  * Support changing the topic using `/topic`
266
267- Viewing the profile using the `info` command.
268
269- Handling skype actions (when the `CHATMESSAGE` has `EMOTED` type)
270
271- Setting your display name using the `nick` command.
272
273- Running Skype on a machine different to BitlBee is possible, the
274  communication is encrypted.
275
276- Managing outgoing calls (with call duration at the end, including
277  SkypeOut calls if you use a phone number instead of a nick):
278
279  * `account set skype/call nick`
280  * `account set -del skype/call`
281
282- Managing incoming calls via questions, just like when you add / remove
283  contacts.
284
285- Querying the current SkypeOut balance:
286
287  * `account set skype/balance query`
288
289== What needs to be done (aka. TODO)
290
291- Notice if foo invites bar. Currently you can see only that bar joined.
292
293- Public chats. See link:http://forum.skype.com/index.php?showtopic=98872[this
294  forum thread], it is still unclear how could it be done for you to be able to
295  `/join` to a public chat..
296
297- Add `--disable-skyped` and `--disable-plugin` switches in case one wants to
298  build `bitlbee-skype` only for a public server or only for use with a public
299  server.
300
301== I would like to have support for ...
302
303If something does not work and it's not in the TODO section, then please
304contact me! Please also try the link:HACKING[git version] before reporting a bug, your
305problem may be already fixed there.
306
307In fact, of course, I wrote this documentation after figured out how to do this
308setup, so maybe I left out some steps. If you needed 'any' additional tricks,
309then it would be nice to include them here.
310
311== Known bugs
312
313- None at this time.
314
315== Screenshots
316
317You can reach some screenshots link:shot[here].
318
319== Additional resources
320
321You can reach the Changelog link:Changelog[here], and a gitweb interface
322http://vmiklos.hu/gitweb/?p=bitlbee-skype.git[here].
323
324The Skype API documentation is
325https://developer.skype.com/Docs/ApiDoc[here] if you're interested.
326
327
328== Testimonials
329
330----
33100:56 < scathe> vmiklos: I like your skype plugin :)
332----
333
334----
335It's really working great so far.
336
337Good Job and thank you!
338Sebastian
339----
340
341----
342Big respect for your work, i really appreciate it.
343
344Martin
345----
346
347----
348Thanks for bitlbee-skype. As a blind Linux user, I cannot use the
349skype GUI client because qt apps ar not accessible yet with the
350available screen readers. bitlbee-skype allows me to make use of skype
351without having to interact much with the GUI client, which helps me a
352lot.
353
354Lukas
355----
356
357----
35802:12 < newton> i must say, i love this little bee ;)
35902:15 < newton> tried it out today with the skype plugin, good work!
360----
361
362== Thanks
363
364for the following people:
365
366* Wilmer van der Gaast, for answering questions about the BitlBee plugin interface
367
368* Arkadiusz Wahlig, author of skype4py, for making suggestions to skyped
369
370* Gabor Adam Toth (tg), for noticing extra code is needed to handle multiline
371  messages
372
373* Cristobal Palmer (tarheelcoxn), for helping to testing the plugin in a
374  timezone different to mine
375
376* Risko Gergely, for his SkypeOut ideas
377
378* people on `#bitlbee` for feedback
379
380Back to my link:/projects[projects page].
381
382// vim: ft=asciidoc
Note: See TracBrowser for help on using the repository browser.