Index: pbx/pbx_config.c =================================================================== --- pbx/pbx_config.c (revision 275908) +++ pbx/pbx_config.c (working copy) @@ -2187,9 +2187,10 @@ ast_copy_string(userscontext, cxt, sizeof(userscontext)); else ast_copy_string(userscontext, "default", sizeof(userscontext)); - + for (v = ast_variable_browse(cfg, "globals"); v; v = v->next) { memset(realvalue, 0, sizeof(realvalue)); + ast_process_quotes_and_slashes(v->value, ',', '|'); pbx_substitute_variables_helper(NULL, v->value, realvalue, sizeof(realvalue) - 1); pbx_builtin_setvar_helper(NULL, v->name, realvalue); }