diff options
Diffstat (limited to 'protocols/jabber/jabber.c')
-rw-r--r-- | protocols/jabber/jabber.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/jabber/jabber.c b/protocols/jabber/jabber.c index 0dbcfa4e..35cf0c90 100644 --- a/protocols/jabber/jabber.c +++ b/protocols/jabber/jabber.c @@ -113,6 +113,9 @@ static void jabber_init(account_t *acc) s = set_add(&acc->set, "mail_notifications_handle", NULL, NULL, acc); s->flags |= ACC_SET_OFFLINE_ONLY | SET_NULL_OK; + s = set_add(&acc->set, "carbons", "true", set_eval_bool, acc); + s->flags |= ACC_SET_OFFLINE_ONLY; + acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE | ACC_FLAG_HANDLE_DOMAINS; } |