Ignore:
Timestamp:
2013-02-10T12:48:32Z (11 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
12f500f, 65a5d15
Parents:
be98957 (diff), 875ba16 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from vmiklos. Adds a "group info" command to list members of a group.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/skyped.txt

    rbe98957 re4f5ca8  
    2020== CONFIGURATION
    2121
    22 See the README for information about how to configure this daemon.
     22- Set up `~/.skyped/skyped.conf`: Create the `~/.skyped` directory, copy
     23  `skyped.conf` and `skyped.cnf` from `/usr/local/etc/skyped/` to `~/.skyped`,
     24  adjust `username` and `password`. The `username` should be your Skype login and
     25  the `password` can be whatever you want, but you will have to specify that one
     26  when adding the Skype account to BitlBee (see later).
     27
     28NOTE: Here, and later - `/usr/local/etc` can be different on your installation
     29if you used the `--sysconfdir` switch when running the `configure` of BitlBee.
     30
     31- Generate the SSL pem files:
     32
     33----
     34$ cd ~/.skyped
     35$ openssl req -new -x509 -days 365 -nodes -config skyped.cnf -out skyped.cert.pem \
     36        -keyout skyped.key.pem
     37----
     38
     39- Start `skyped` (the TCP server), initially without detaching and enabling debug messages:
     40
     41----
     42$ skyped -d -n
     43----
     44
     45- Start your `IRC` client, connect to BitlBee and add your account:
     46
     47----
     48account add skype <user> <pass>
     49----
     50
     51`<user>` should be your Skype account name, `<pass>` should be the one you declared
     52in `skyped.conf`.
    2353
    2454== OPTIONS
Note: See TracChangeset for help on using the changeset viewer.