diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-03 22:16:41 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-03 22:16:41 +0100 |
commit | 0bd948edfea280cf9f05e21cd5bef4b7fdf3335c (patch) | |
tree | 1b3f4bbc77f07f3a5f204b688694704d59f3d493 /irc.c | |
parent | 917a83ee526b8e5baaf451888cd0a3149894697b (diff) |
Show a user going offline as a QUIT, not as one or more PARTs, like in the
old-style BitlBee. This so that the IRC client will show the notification
in query windows as well. Make it a setting though, for bug #539.
Diffstat (limited to 'irc.c')
-rw-r--r-- | irc.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -107,6 +107,7 @@ irc_t *irc_new( int fd ) s = set_add( &b->set, "display_timestamps", "true", set_eval_bool, irc ); s = set_add( &b->set, "handle_unknown", "add_channel", NULL, irc ); s = set_add( &b->set, "lcnicks", "true", set_eval_bool, irc ); + s = set_add( &b->set, "offline_user_quits", "true", set_eval_bool, irc ); s = set_add( &b->set, "ops", "both", set_eval_irc_channel_ops, irc ); s = set_add( &b->set, "paste_buffer", "false", set_eval_bool, irc ); s->old_key = g_strdup( "buddy_sendbuffer" ); |