Allow users to set default muc service and nickname per account

See #238

Conflicts:

	src/config/accounts.c
This commit is contained in:
James Booth
2013-09-12 23:30:35 +01:00
parent dd7aa76528
commit df14a46d48
4 changed files with 129 additions and 16 deletions

View File

@@ -789,6 +789,12 @@ cons_show_account(ProfAccount *account)
if (account->server != NULL) {
cons_show ("server : %s", account->server);
}
if (account->muc_service != NULL) {
cons_show ("muc service : %s", account->muc_service);
}
if (account->muc_nick != NULL) {
cons_show ("muc nick : %s", account->muc_nick);
}
if (account->last_presence != NULL) {
cons_show ("Last presence : %s", account->last_presence);
}