tiny - Yet another console IRC client

Travis Build Status MIT licensed crates.io

tiny is an IRC client written in Rust.

tiny in action

tiny in action

Features

Installation

Install the Rust nightly toolchain, clone the repo, and run cargo install (or cargo install --force if you already have an older version installed).

Arch Linux users can install tiny from the AUR. Note that the supported way to meet the rust-nightly dependency is with the official Rustup package, but you can alternatively install Rustup via the Rust Toolchain Installer. Either way, remember to install the Rust nightly toolchain before running makepkg.

Since version 0.3.0 tiny needs OpenSSL or LibreSSL headers and runtime libraries. See rust-openssl's README for instructions on installing them.

Dependencies

tiny is tested on Linux and OSX.

Configuration

When tiny couldn't find a config file at ~/.tinyrc.yml it creates one with some defaults and exits. Edit that file before re-running tiny to change the defaults. If you want to create the file yourself, the default file looks like this:

```yaml

Servers to auto-connect

servers: - addr: irc.mozilla.org port: 6697 # optional field, defaults to false: tls: true # optional field for server password: # pass: 'serverpass' hostname: yourhost realname: yourname nicks: [tinyuser] # optional SASL authentication # sasl: # username: 'tinyuser' # password: 'hunter2' autocmds: - 'msg NickServ identify hunter2' - 'join #tiny'

Defaults used when connecting to a server via the /connect command

defaults: nicks: [tinyuser] hostname: yourhost realname: yourname autocmds: []

Where to put log files

logdir: '/home/$USER/tinylogs'

```

A note on nick identification: Some IRC servers such as ircd-seven (used by Freenode) and InspIRCd (used by Mozilla) support identification via the PASS command. This way of identification (rather than sending a message to a service like NickServ) is better when some of the channels that you automatically join (by adding a join command to auto_cmds) require identification. To use this method enter your nick password to the pass field in servers.

Command line arguments

By default (i.e. when no command line arguments passed) tiny connects to all servers listed in the config. tiny considers command line arguments as patterns to be matched in server addresses, so you can pass command line arguments to connect to only a subset of servers specified in the config. For example, in this config:

```yaml servers: - addr: irc.mozilla.org ...

- addr: chat.freenode.net
  ...

```

By default tiny connects to both servers. You can connect to only the second server by passing freenode as a command line argument.

You can use --config <path> to specify your config file location.

Key bindings

Commands

Commands start with / character.

Development

tiny is in early stages of development. Some of features that you might think are essential may be missing. Please open an issue for those features (or even better, a pull request!). Remember to add yourself to the list of contributors if you submit a pull request.

Being a Rust n00b, I spent a lot of time trying to convince borrow checker, failing at that, and either adding bunch of ugly hacks (e.g. instead a loop that modifies single element implementing a loop that finds an index and modifying that index after the loop), or using a simpler but less efficient code (e.g. cloning things redundantly to avoid borrow checking). Still, I think the connection manager (conn.rs) and UI parts (tui module) are not too bad. Mess is mostly in lib.rs which implements the main logic (command and message handling etc.).

Any suggestions / code reviews / pull requests are very welcome!

If you're looking to contribute, see TODOs below. If you don't know where to start, open an issue and I'd love to help.

TODOs

Contributors

Ömer Sinan Ağacan

Abin Simon

Umur Gedik

Chiu Yue Chun

@wammies

Nick Econopouly