1 | = Skype plugin for BitlBee |
---|
2 | Miklos Vajna <vmiklos@frugalware.org> |
---|
3 | |
---|
4 | == How to set it up |
---|
5 | |
---|
6 | Before you start. The setup is the following: BitlBee can't connect directly to |
---|
7 | Skype servers (the company's ones). It needs a running Skype client to do so. |
---|
8 | In fact BitlBee will connect to `skyped` (a tcp server, provided in this |
---|
9 | package) and `skyped` will connecto to your Skype client. |
---|
10 | |
---|
11 | NOTE: The order is important. First you have to start Skype. Then `skyped` can |
---|
12 | connect to it, finally BitlBee can connect to `skyped`. |
---|
13 | |
---|
14 | - You need the BitlBee bzr branch: |
---|
15 | |
---|
16 | ---- |
---|
17 | bzr branch http://code.bitlbee.org/bitlbee/ |
---|
18 | ---- |
---|
19 | |
---|
20 | - You need some additional patches: |
---|
21 | |
---|
22 | ---- |
---|
23 | http://frugalware.org/~vmiklos/patches/bitlbee-configure-plugins.patch |
---|
24 | http://frugalware.org/~vmiklos/patches/bitlbee-global-conf-may-be-null.patch |
---|
25 | http://frugalware.org/~vmiklos/patches/bitlbee-makefile-headers.patch |
---|
26 | http://frugalware.org/~vmiklos/patches/bitlbee-more-verbose-on-plugin-errors.patch |
---|
27 | ---- |
---|
28 | |
---|
29 | (Yes, I submitted all of them to the |
---|
30 | http://bugs.bitlbee.org/bitlbee/[bugtracker] already.) |
---|
31 | |
---|
32 | - Now compile and install it: |
---|
33 | |
---|
34 | ---- |
---|
35 | ./configure --prefix=/usr |
---|
36 | make |
---|
37 | make install install-dev |
---|
38 | ---- |
---|
39 | |
---|
40 | - Get the plugin code: |
---|
41 | |
---|
42 | ---- |
---|
43 | git clone http://ftp.frugalware.org/pub/other/people/vmiklos/bitlbee-skype |
---|
44 | ---- |
---|
45 | |
---|
46 | - Compile and install it: |
---|
47 | |
---|
48 | ---- |
---|
49 | make |
---|
50 | cp skype.so /usr/lib/bitlbee |
---|
51 | ---- |
---|
52 | |
---|
53 | - Start skyped (the tcp server): |
---|
54 | |
---|
55 | ---- |
---|
56 | python skyped.py |
---|
57 | ---- |
---|
58 | |
---|
59 | NOTE: It's important to start skyped on the same machine and using the same |
---|
60 | user as you run Skype as it uses the session DBus for communication! |
---|
61 | |
---|
62 | - Start your IRC client, connect to BitlBee and add your account: |
---|
63 | |
---|
64 | ---- |
---|
65 | account add skype <user> <pass> |
---|
66 | account set 0/server localhost |
---|
67 | ---- |
---|
68 | |
---|
69 | IMPORTANT: <user> should be your skype account name. This way you won't see |
---|
70 | yourself joining to `&bitlbee`. |
---|
71 | |
---|
72 | NOTE: the <pass> option is not used currently. |
---|
73 | |
---|
74 | == What works |
---|
75 | |
---|
76 | - Download nicks and away statuses from Skype |
---|
77 | |
---|
78 | - Noticing joins / parts while we're connected |
---|
79 | |
---|
80 | - Sending messages |
---|
81 | |
---|
82 | - Receiving messages |
---|
83 | |
---|
84 | - Receiving away status changes |
---|
85 | |
---|
86 | - `skyped` (the tcp daemon that is a gateway between Skype and tcp) |
---|
87 | |
---|
88 | - Error handling when `skyped` is not running and when it exits |
---|
89 | |
---|
90 | - Marking received messages as seen so that Skype won't say there are unread messages |
---|
91 | |
---|
92 | - Adding / removing contacts |
---|
93 | |
---|
94 | - Set away state when you do a `/away`. |
---|
95 | |
---|
96 | - When you `account off`, Skype will set status to `Offline` |
---|
97 | |
---|
98 | - When you `account on`, Skype will set status to `Online` |
---|
99 | |
---|
100 | - Detect when somebody wants to add you and ask for confirmation |
---|
101 | |
---|
102 | == What needs to be done (aka. TODO) |
---|
103 | |
---|
104 | == I would like to have support for ... |
---|
105 | |
---|
106 | If something does not work and it's not in the TODO section, then please contact me! |
---|
107 | |
---|
108 | == Known bugs |
---|
109 | |
---|
110 | - Sometimes when you get a lot of messages in a short time, some of the |
---|
111 | messages are dropped. This is a known bug in Skype itself as of version |
---|
112 | 1.4.0.99 |
---|
113 | (http://forum.skype.com/index.php?s=&showtopic=94545&view=findpost&p=431710[link]). |
---|
114 | |
---|
115 | == Screenshots |
---|
116 | |
---|
117 | You can reach some screenshots http://frugalware.org/~vmiklos/pics/shots/bitlbee-skype/[here]. |
---|
118 | |
---|
119 | == Changelog |
---|
120 | |
---|
121 | You can reach the Changelog link:Changelog[here]. |
---|
122 | |
---|
123 | // vim: ft=asciidoc |
---|