source: skype/README @ 21a387fd

Last change on this file since 21a387fd was 21a387fd, checked in by Miklos Vajna <vmiklos@…>, at 2008-06-18T17:47:26Z

docu update

  • Property mode set to 100644
File size: 9.9 KB
RevLine 
[0c60f96]1= Skype plugin for BitlBee
[7f1cf70]2Miklos Vajna <vmiklos-at-vmiklos-dot-hu>
[afe221f]3
[56e4ac4]4== Status
5
[4eaadf6]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
[56e4ac4]15One day I browsed the BitlBee bugtracker and found
16http://bugs.bitlbee.org/bitlbee/ticket/82[this] ticket. Then after a while I
[1138b25]17returned and saw that it was still open. So I wrote it.
[56e4ac4]18
[2042b56]19It's pretty stable, I use it for my daily work. Being a plug-in, no patching
[20994cb]20is required, you can just install it after installing BitlBee itself.
[75742cc]21
[4c3a4c8]22NOTE: You will see that this implementation of the Skype plug-in still requires
[54c269d]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
[22d97b4]29== Requirements
30
[7987be8]31* Skype >= 1.4.0.99. The latest version I've tested is 2.0.0.68.
[36fbaa0]32* BitlBee >= 1.1.1dev. The latest version I've tested is 1.2.
[eb39102]33* Skype4Py >= 0.9.28.7. Previous versions won't work due to API changes.
[c60b864]34* Python >= 2.5. Skype4Py does not work with 2.4.
[e49da25]35* PyGObject >= 2.8.0. Older versions are part of PyGTK. (And you don't want to
36  install GTK for nothing, right?)
[b0d40f5]37* pyopenssl or python-gnutls.
[22d97b4]38
[df1a59d4]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.
[760ed1f]41
[9e03e55]42== How to set it up
[afe221f]43
[751b149]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
[4c3a4c8]47package) and `skyped` will connect to to your Skype client.
[751b149]48
[d0a6a8c]49The benefit of this architecture is that you can run Skype and `skyped`
50on a machine different to the one where you run BitlBee (it can be even
51a public server) and/or your IRC client.
[7e4f0ca1]52
[d0a6a8c]53NOTE: The order is important. First `skyped` starts Skype. Then `skyped`
54connects to Skype, finally BitlBee can connect to `skyped`.
55
56=== Installing under Frugalware
57
58- Install the necessary packages:
[11eed8f]59
[36fbaa0]60----
[5293707]61# pacman-g2 -S bitlbee-skype skype4py
[36fbaa0]62----
63
[4966d841]64and you don't have to compile anything manually.
65
[d0a6a8c]66=== Installing under Debian
67
68- Install the necessary development package:
[4966d841]69
70----
71# apt-get install bitlbee-dev
72----
73
[5293707]74and you have to install `bitlbee-skype` and `skype4py` from source.
[4966d841]75
[d0a6a8c]76=== Installing from source
77
78- You need the latest stable BitlBee release:
[afe221f]79
[0c60f96]80----
[36fbaa0]81$ wget http://get.bitlbee.org/src/bitlbee-1.2.tar.gz
82$ tar xf bitlbee-1.2.tar.gz
83$ cd bitlbee-1.2
[0c60f96]84----
[afe221f]85
[d044a5a]86NOTE: You no longer need additional patches, as of version 1.1.1dev.
[b8b0bfd]87
[afe221f]88- Now compile and install it:
89
[0c60f96]90----
[ccb50f5]91$ ./configure
92$ make
93# make install install-dev
[0c60f96]94----
[afe221f]95
[21a387fd]96- Get the plugin code (in an empty dir, or whereever you want, it does
97  not matter):
[afe221f]98
[0c60f96]99----
[3b495c0]100$ wget http://vmiklos.hu/project/bitlbee-skype/bitlbee-skype-@VERSION@.tar.gz
101$ tar xf bitlbee-skype-@VERSION@.tar.gz
102$ cd bitlbee-skype-@VERSION@
[0c60f96]103----
[afe221f]104
105- Compile and install it:
106
[0c60f96]107----
[ccb50f5]108$ ./configure
109$ make
110# make install
[0c60f96]111----
[afe221f]112
[21a387fd]113This will install the plugin to where BitlBee expects them, which is
114`/usr/local/lib/bitlbee` if you installed BitlBee from source.
115
[5293707]116- To install http://skype4py.sourceforge.net/[Skype4Py] from source:
117
118----
119$ tar -zxvf Skype4Py-x.x.x.x.tar.gz
120$ cd Skype4Py-x.x.x.x
121# python setup.py install
122----
[c15f71a]123
[d0a6a8c]124=== Configuring
125
[52d377d]126- Edit `/usr/local/etc/skyped/skyped.conf`: adjust `username` and `password`. The
[e65ceaa]127  `username` should be your Skype login and the `password` can be whatever you
128  want, but you will have to specify that one when adding the Skype account to
129  BitlBee (see later).
130
[52d377d]131NOTE: Here, and later - `/usr/local/etc` can be different on your installation
132if you used the `--sysconfdir` switch when running bitlbee-skype's `configure`.
133
134- Generate the SSL pem files:
135
136----
[ccb50f5]137# cd /usr/local/etc/skyped
138# openssl req -new -x509 -days 365 -nodes -config skyped.cnf -out skyped.cert.pem \
[52d377d]139        -keyout skyped.key.pem
140----
141
[ccb50f5]142NOTE: Maybe you want to adjust the permissions in the `/usr/local/etc/skyped`
143dir. For example make it readable by just your user.
144
[b0d40f5]145- If both pyopenssl and python-gnutls are available, then python-gnutls
146  will be used. This behaviour can be overwritten by:
147
148----
149$ export SKYPED_NO_GNUTLS=1
150----
151
[833eaee]152- Start `skyped` (the tcp server):
[afe221f]153
[0c60f96]154----
[ccb50f5]155$ skyped
[0c60f96]156----
[ba20c39]157
[4c3a4c8]158- Start your `IRC` client, connect to BitlBee and add your account:
[7338d59]159
160----
[789d055]161account add skype <user> <pass>
162account set skype/server localhost
[7338d59]163----
164
[e65ceaa]165<user> should be your Skype account name, <pass> should be the one you declared
[10a42d9]166in `skyped.conf`. If you want to run skyped on a remote machine, replace
167`localhost` with the name of the machine.
[7338d59]168
[9ace502]169If you are running skyped on a custom port:
170
171----
172account set skype/port <port>
173----
174
[7996794]175If you want to set your full name (optional):
176
177----
178account set skype/display_name "John Smith"
179----
180
181If you want to see your skypeout contacts online as well (they are
182offline by default):
183
184----
185account set skype/skypeout_offline false
186----
187
[23b84e1]188== Setting up Skype in a VNC server (optional)
189
190Optionally, if you want to run Skype on a server, you might want to setup up
[4c3a4c8]191a `VNC` server as well. I used `tightvnc` but probably other `VNC` servers will
[23b84e1]192work, too.
193
194First run
195
196----
[ccb50f5]197$ vncpasswd ~/.vnc/passwd
[23b84e1]198----
199
200and create a password. You will need it at least once.
201
202Now create `~/.vnc/xstartup` with the following contents:
203
204----
205#!/bin/sh
206
[2dbb768]207twm
[23b84e1]208----
209
[57087df]210Adjust the permissions:
211
212----
[ccb50f5]213$ chmod +x ~/.vnc/xstartup
[57087df]214----
215
[23b84e1]216Then start the server:
217
218----
[ccb50f5]219$ vncserver
[23b84e1]220----
221
[ece66da]222Then connect to it, start an `xterm`, set up Skype (username, password,
223enable X11 API and allow the `Skype4Py` client), quit from Skype, and
224start `skyped`. If you want to watch its traffic, enable debug messages
225and foreground mode:
[23b84e1]226
[ece66da]227----
228$ skyped -n -d
229----
[dffa24f]230
[123e45a]231== Features
[b6d26ac]232
[adce2de]233- Download nicks and away statuses from Skype
[b6d26ac]234
[39a0d64]235- Noticing joins / parts while we're connected
236
[93ece66]237- Sending messages
238
[8dd21bb]239- Receiving messages
240
[72f697b]241- Receiving away status changes
242
[62bb4e4]243- `skyped` (the tcp daemon that is a gateway between Skype and tcp)
[ed2e37f]244
[62bb4e4]245- Error handling when `skyped` is not running and when it exits
[afe221f]246
[62bb4e4]247- Marking received messages as seen so that Skype won't say there are unread messages
[440665b]248
[6627d92]249- Adding / removing contacts
250
[23411c6]251- Set away state when you do a `/away`.
252
[d3cbd17]253- When you `account off`, Skype will set status to `Offline`
[348a3a2]254
[d3cbd17]255- When you `account on`, Skype will set status to `Online`
[348a3a2]256
[d3cbd17]257- Detect when somebody wants to add you and ask for confirmation
[8dd21bb]258
[df9255d]259- Detect when somebody wants to transfer a file
260
[d6a371e]261- Group chat support:
262
263  * Detect if we're invited
264
265  * Send / receive group chat messages
[93ece66]266
[ff58445]267  * Invite others (using `/invite <nick>`)
[c5dd164]268
[d6a371e]269  * Part from group chats
[c5dd164]270
[ff58445]271  * Starting a group chat (using `/j #nick`)
272
[e103e73]273- Topic changes in group chats:
274
275  * Show the current topic (if any) on join
276
277  * Notice when someone changes the topic
278
279  * Support changing the topic using `/topic`
280
[fb36492]281- Viewing the profile using the `info` command.
282
[a06a0a5]283- Handling skype actions (when the `CHATMESSAGE` has `EMOTED` type)
284
[6b266f6]285- Setting your display name using the `nick` command.
[a06a0a5]286
[ccb50f5]287- Running Skype on a machine different to BitlBee is possible, the
288  communication is encrypted.
289
[9aed2f1]290- Managing outgoing calls (with call duration at the end, including
291  SkypeOut calls if you use a phone number instead of a nick):
[2eb4b1f]292
293  * `account set skype/call nick`
294  * `account set -del skype/call`
[123e45a]295
[e0074cb]296- Managing incoming calls via questions, just like when you add / remove
297  contacts.
[c5dd164]298
[9aed2f1]299- Querying the current SkypeOut balance:
300
301  * `account set skype/balance query`
302
[e0074cb]303== What needs to be done (aka. TODO)
[846ceffb]304
[d6a371e]305- Notice if foo invites bar. Currently you can see only that bar joined.
306
[6344674]307- Public chats. See
308  link:https://developer.skype.com/jira/browse/SCL-381[this feature
309  request], this is because it is still not possible (under Linux) to
310  `join_chat` to a public chat..
[d6a371e]311
[3511d80]312- Add `--disable-skyped` and `--disable-plugin` switches in case one wants to
313  build `bitlbee-skype` only for a public server or only for use with a public
314  server.
[fdde7d8]315
[0c60f96]316== I would like to have support for ...
317
[23b84e1]318If something does not work and it's not in the TODO section, then please
[e72d869]319contact me! Please also try the link:HACKING[git version] before reporting a bug, your
[80d9004]320problem may be already fixed there.
[23b84e1]321
322In fact, of course, I wrote this documentation after figured out how to do this
323setup, so maybe I left out some steps. If you needed 'any' additional tricks,
324then it would be nice to include them here.
[afe221f]325
[f78f949]326== Known bugs
327
[5652d43]328- None at this time.
[f78f949]329
[0c60f96]330== Screenshots
331
[668a122]332You can reach some screenshots link:shot[here].
[ddd3502]333
[25d87e4]334== Additional resources
[a60c3c2]335
[25d87e4]336You can reach the Changelog link:Changelog[here], and a gitweb interface
[6f01885]337http://vmiklos.hu/gitweb/?p=bitlbee-skype.git[here].
[a60c3c2]338
[c09f90f]339The Skype API documentation is
340https://developer.skype.com/Docs/ApiDoc[here] if you're interested.
341
[ceee9c7]342
343== Testimonials
344
345----
34600:56 < scathe> vmiklos: I like your skype plugin :)
347----
348
[6774d83]349----
350It's really working great so far.
351
352Good Job and thank you!
353Sebastian
354----
355
[587a921]356----
357Big respect for your work, i really appreciate it.
358
359Martin
360----
361
[93264f0]362----
363Thanks for bitlbee-skype. As a blind Linux user, I cannot use the
364skype GUI client because qt apps ar not accessible yet with the
365available screen readers. bitlbee-skype allows me to make use of skype
366without having to interact much with the GUI client, which helps me a
367lot.
368
369Lukas
370----
371
[e3d0b10]372----
37302:12 < newton> i must say, i love this little bee ;)
37402:15 < newton> tried it out today with the skype plugin, good work!
375----
376
[65e4020]377== Thanks
378
379for the following people:
380
[e49da25]381* Wilmer van der Gaast, for answering questions about the BitlBee plugin interface
[65e4020]382
[56a3616]383* Arkadiusz Wahlig, author of skype4py, for making suggestions to skyped
[65e4020]384
[9834597]385* Gabor Adam Toth (tg), for noticing extra code is needed to handle multiline
386  messages
387
388* Cristobal Palmer (tarheelcoxn), for helping to testing the plugin in a
389  timezone different to mine
[65e4020]390
[4834307]391* Risko Gergely, for his SkypeOut ideas
392
[437ddf5]393* people on `#bitlbee` for feedback
394
[eb9cbb8]395Back to my link:/projects[projects page].
396
[0c60f96]397// vim: ft=asciidoc
Note: See TracBrowser for help on using the repository browser.