diff options
-rw-r--r-- | protocols/purple/purple.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index 8e100c8c..d107dc2f 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -106,6 +106,16 @@ static void purple_init( account_t *acc ) g_string_printf( help, "BitlBee libpurple module %s (%s).\n\nSupported settings:", (char*) acc->prpl->name, prpl->info->name ); + if( pi->user_splits ) + { + GList *l; + g_string_append_printf( help, "\n* username: Username" ); + for( l = pi->user_splits; l; l = l->next ) + g_string_append_printf( help, "%c%s", + purple_account_user_split_get_separator( l->data ), + purple_account_user_split_get_text( l->data ) ); + } + /* Convert all protocol_options into per-account setting variables. */ for( i = pi->protocol_options; i; i = i->next ) { |