1. Connection:
==============

1.1 How can I automatically connect to my account at irssi startup ?

You can put these things in your config file (The config file can be found
here : "~/.irssi/config"):

To create a XMPP network, add to chatnets section:
  <network> = {
    type = "XMPP";
    nick = "<jid>";
  };

Then you can add this at the end of the servers section:
  {
    address = "<address>";
    port="<port>";
    use_ssl = "{yes|no}";
    chatnet = "<network>";
    password = "<password>";
    autoconnect = "{yes|no}";
  };

Or in irssi, you can type this:
    /SERVER ADD -xmppnet <network> <address> <port> <password> <jid>

If 0 is specified as port, the default port will be used (5222 for a regular
connection or 5223 for SSL).

Now you can connect to your jabber account by typing:
    /CONNECT <network>
Or just restart irssi if you have set autoconnect to yes.

2.General:
===========

2.1 Why the lagmeter is not working ?

3. Scripting:
=============

3.1 How can I use or write scripts with irssi-xmpp ?

3.2 My script seems to be incompatible with irssi-xmpp and throws warnings 
such as: Can't locate object method "xxx" via package "Irssi::Xmpp::Server".
How can I get rid of that ?

4. Themes:
==========

4.1 How can I change the theme of the messages of irssi-xmpp ?
