From 6ea4f6bb7856a9015b1b693dc80f987df68c390f Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Wed, 17 Mar 2010 01:13:23 +0000 Subject: [PATCH] Set resource_select to activity by default since priority has always been a stupid default. More fixes coming up soon. --- doc/CHANGES | 3 +++ doc/user-guide/commands.xml | 2 +- protocols/jabber/jabber.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/CHANGES b/doc/CHANGES index cbd8d73..1cac2dc 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -18,6 +18,9 @@ Version 1.2.5: - Auto reconnect is now enabled by default since all protocols can properly detect cases where auto reconnect should be avoided (i.e. concurrent logins). +- Changed the default resource_select setting which should reduce message + routing issues on Jabber (i.e. messages going someone's phone instead of + the main client). Fixed 17 Mar 2010 diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index 931608e..700df7b 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -715,7 +715,7 @@ - priority + activity priority, activity diff --git a/protocols/jabber/jabber.c b/protocols/jabber/jabber.c index eca7d2d..a1fb881 100644 --- a/protocols/jabber/jabber.c +++ b/protocols/jabber/jabber.c @@ -66,7 +66,7 @@ static void jabber_init( account_t *acc ) s = set_add( &acc->set, "resource", "BitlBee", NULL, acc ); s->flags |= ACC_SET_OFFLINE_ONLY; - s = set_add( &acc->set, "resource_select", "priority", NULL, acc ); + s = set_add( &acc->set, "resource_select", "activity", NULL, acc ); s = set_add( &acc->set, "server", NULL, set_eval_account, acc ); s->flags |= ACC_SET_NOSAVE | ACC_SET_OFFLINE_ONLY | SET_NULL_OK; -- 2.11.4.GIT