Screen Irssi Bitlbee

From ArchWiki

Using GNU Screen, Irssi, Bitlbee, and SSH together allows you to have a persistent connection to IRC servers and other chat networks. Via SSH, you can access this persistent chat suite from anywhere. Putting the pieces together is not difficult, and this page will guide you through it.

Components

GNU Screen

First we will introduce GNU Screen. Screen lets you keep shells open, even when you are not actively using them. We will be using it here to keep our IRC session persistent so that we can reconnect to it from anywhere without having to close the IRC client. See GNU Screen and screen(1).

Irssi

Irssi is a command-line IRC client. It is very flexible and scriptable. We will be using it, obviously, as our IRC client.

Bitlbee

Bitlbee is an interesting project. It sets up an IRC server on your local machine, which connects to various instant messenger protocols, and represents logged-in users as IRC users.

SSH

Everyone knows what SSH is. This will let us use our persistent chat suite from anywhere with web access.

Setting it up

Installing

First, install openssh irssi screen bitlbeeAUR.

Configuring SSH

Follow the directions on SSH's wiki page to set up SSH. It is far too involved to summarize here.

Configuring bitlbee

The only application which really requires you to configure is Bitlbee. You can follow the directions on Bitlbee's wiki page if you like. All you really need to do is go through /etc/bitlbee/bitlbee.conf and configure it how you like. Below are some modifications worth pointing out.

This will have Bitlbee run as a daemon, which forks a new process for each user that joins. This is simpler than running it through xinetd, so I suggest it.

RunMode = ForkDaemon

This will have the daemon drop root priveledges after it launches on boot. Do this for security; there is no reason for Bitlbee to run as root.

User = bitlbee

Be sure to change the password here.

OperPassword =

Using Irssi in Screen

Open up a terminal and run screen. After the copyright message (read the wiki to disable that message), you should find yourself at a plain terminal. Launch irssi in this terminal.

Irssi is a full-fledged IRC client, so we cannot list a complete tutorial here. Use Google to find more information on what irssi can do for you. Now's the time to connect to whatever IRC networks you like.

Connecting to Bitlbee

Bitlbee sets up an IRC server on your local machine. To connect to it, run this in irssi:

/connect localhost <optional port>

You should immediately join a channel called &bitlbee. Here you will see a brief introduction to Bitlbee. Type help to get started. Set up Bitlbee to connect to your instant messenger accounts. You will see your contacts join the channel.

Using It

Now that we have got Irssi, Bitlbee, and Screen all running, what can we do with it?

First, the whole point of this exercise was to create a persistent chat session that can be accessed from anywhere. From another computer, SSH into your server. Type in

screen -raAd 

and watch as irssi, with all of your channels and IM connections, pops up. Any messages left for you while you were away are visible, just as if you were at your server.

Launching the Setup

Since it is slow to manually connect to each IRC network, join channels, connect to Bitlbee, and have Bitlbee connect to your messaging accounts every time you you log in, set up some scripts to help you out.

First, create a screen initialization file. Here is an example:

~/irc_screen
source ~/.screenrc
screen -t IRC 1 irssi

This will launch irssi in window 1 and title the screen session 'IRC'.

Then set up a short script to launch screen with that configuration file:

~/bin/irc_start
#!/bin/sh
screen -d -m -c ~/irc_screen

The command line switches -d -m start screen in detached mode, so that it launches in the background. -c ~/irc_screen uses ~/irc_screen as the rc file for this session.

To launch and connect to the Screen session:

~/bin/irc_start
screen -raAd

Doing More

Look into configuring irssi to behave more like you want: https://www.quadpoint.org/articles/irssi

Auto-away on screen detach

Using the screen-away script, you can have yourself marked "away" on BitLBee when you disconnect your screen session. By default the script affects all servers but can easily be modified to only affect BitLBee.

Read more about scripts at the URL in 'Doing More'. Find the screen-away.pl script at https://scripts.irssi.org/

Modifying screen-away.pl for BitLBee

First you need the server tag for BitLBee. You can get this by typing "/server" in irssi. The tag is the first word on the line. For me, the tag is "BitLBee". On the line following

foreach $server (Irssi::servers()) {

(which occurs twice) insert the line

next unless ( $server->{chatnet} eq 'TAG' );

replacing TAG as necessary. In the current version, those occur on lines 181 and 206. To use the script you need to load it - unless if if autoloaded, and set it active.

/script load screen_away
/set screen_away_active on

Persisting the chat client through suspends and connectivity changes

If you use a laptop, you likely suspend and change wireless networks often, which causes your ssh client to lose connection. This can be annoying for a chat client you expect to always be available.

To fix this, try Mosh, which is a shell that seamlessly deals with reconnection after resuming or changing wireless networks.