Index: apps/app_voicemail.c =================================================================== --- apps/app_voicemail.c (revision 308944) +++ apps/app_voicemail.c (working copy) @@ -12071,6 +12071,7 @@ if (ucfg) { for (cat = ast_category_browse(ucfg, NULL); cat ; cat = ast_category_browse(ucfg, cat)) { + if (strcasecmp(cat, "general")) { if (!ast_true(ast_config_option(ucfg, cat, "hasvoicemail"))) continue; if ((current = find_or_create(userscontext, cat))) { @@ -12087,6 +12088,7 @@ read_password_from_file(secretfn, current->password, sizeof(current->password)); } } + } } ast_config_destroy(ucfg); }