diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2013-02-10 12:48:32 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2013-02-10 12:48:32 +0000 |
commit | e4f5ca868fc4313a6a9a00c5eda0a03767abc703 (patch) | |
tree | 990e1ec4fc29662e1966ccef09447dd625712b8b /protocols/skype/skyped.txt | |
parent | be98957a88f66215ab6fb84810a1b2d394eac879 (diff) | |
parent | 875ba16b0224b9bf50a0ea15aa96fe545c76b845 (diff) |
Merge from vmiklos. Adds a "group info" command to list members of a group.
Diffstat (limited to 'protocols/skype/skyped.txt')
-rw-r--r-- | protocols/skype/skyped.txt | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/protocols/skype/skyped.txt b/protocols/skype/skyped.txt index c27cfada..0f11f093 100644 --- a/protocols/skype/skyped.txt +++ b/protocols/skype/skyped.txt @@ -19,7 +19,37 @@ is done via SSL. == CONFIGURATION -See the README for information about how to configure this daemon. +- Set up `~/.skyped/skyped.conf`: Create the `~/.skyped` directory, copy + `skyped.conf` and `skyped.cnf` from `/usr/local/etc/skyped/` to `~/.skyped`, + adjust `username` and `password`. The `username` should be your Skype login and + the `password` can be whatever you want, but you will have to specify that one + when adding the Skype account to BitlBee (see later). + +NOTE: Here, and later - `/usr/local/etc` can be different on your installation +if you used the `--sysconfdir` switch when running the `configure` of BitlBee. + +- Generate the SSL pem files: + +---- +$ cd ~/.skyped +$ openssl req -new -x509 -days 365 -nodes -config skyped.cnf -out skyped.cert.pem \ + -keyout skyped.key.pem +---- + +- Start `skyped` (the TCP server), initially without detaching and enabling debug messages: + +---- +$ skyped -d -n +---- + +- Start your `IRC` client, connect to BitlBee and add your account: + +---- +account add skype <user> <pass> +---- + +`<user>` should be your Skype account name, `<pass>` should be the one you declared +in `skyped.conf`. == OPTIONS |