From 0bd948edfea280cf9f05e21cd5bef4b7fdf3335c Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sat, 3 Jul 2010 22:16:41 +0100 Subject: 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. --- irc.c | 1 + 1 file changed, 1 insertion(+) (limited to 'irc.c') diff --git a/irc.c b/irc.c index fb720088..650917fe 100644 --- a/irc.c +++ b/irc.c @@ -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" ); -- cgit v1.2.3