Skip to content

Instantly share code, notes, and snippets.

@OrangeTux
Last active June 19, 2021 13:18

Revisions

  1. OrangeTux revised this gist Sep 19, 2013. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion config
    Original file line number Diff line number Diff line change
    @@ -34,7 +34,6 @@ chatnets = {

    channels = (
    # Join Mutli-User Chat (MUC) automatically.
    # https://regrates.hipchat.com/account/xmpp
    #
    # In order to join a group conversation you have to use your HipChat nick name.
    # You can do this automatically by setting 'set alternate_nick You HipChat Name' in a file
  2. Auke Willem Oosterhoff revised this gist Jun 7, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion config
    Original file line number Diff line number Diff line change
    @@ -28,7 +28,7 @@ chatnets = {
    # https://regrates.hipchat.com/account/xmpp
    hipchat = {
    type = "XMPP";
    nick = "Jabber id";
    nick = "<Jabber id>";
    };
    };

  3. Auke Willem Oosterhoff created this gist Jun 7, 2013.
    44 changes: 44 additions & 0 deletions config
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,44 @@
    # irssi-xmpp plugin required
    # http://cybione.org/~irssi-xmpp/
    servers = (
    {
    address = "chat.facebook.com";
    chatnet = "facebook";
    password = "<password>";
    autoconnect = "true";
    },
    {
    address = "talk.google.com";
    chatnet = "gtalk";
    password = "<password>";
    #autoconnect = "true";
    },
    {
    address = "chat.hipchat.com";
    chatnet = "hipchat";
    password = "<password>";
    autoconnect = "true";
    }
    );

    chatnets = {
    gtalk = { type = "XMPP"; nick = "<email address>"; };
    # https://www.facebook.com/settings?ref=mb
    facebook = { type = "XMPP"; nick = "<facebook user name>"; };
    # https://regrates.hipchat.com/account/xmpp
    hipchat = {
    type = "XMPP";
    nick = "Jabber id";
    };
    };

    channels = (
    # Join Mutli-User Chat (MUC) automatically.
    # https://regrates.hipchat.com/account/xmpp
    #
    # In order to join a group conversation you have to use your HipChat nick name.
    # You can do this automatically by setting 'set alternate_nick You HipChat Name' in a file
    # 'startup' in the irssi folder.
    { name = "<Jabber id of group>@conf.hipchat.com"; chatnet = "hipchat"; autojoin = "Yes"; }
    { name = "<Jabber id of group>@conf.hipchat.com"; chatnet = "hipchat"; autojoin = "Yes"; }
    );