dect
/
asterisk
Archived
13
0
Fork 0

Add FAXEXTEN to save the DID/DNIS when we transfer to "fax" extension

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1063 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
martinp 2003-05-29 20:18:45 +00:00
parent f9038c97e9
commit be1aaf406e
1 changed files with 2 additions and 0 deletions

View File

@ -3279,6 +3279,8 @@ struct ast_frame *zt_read(struct ast_channel *ast)
if (ast_exists_extension(ast, ast->context, "fax", 1, ast->callerid)) {
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Redirecting %s to fax extension\n", ast->name);
/* Save the DID/DNIS when we transfer the fax call to a "fax" extension */
pbx_builtin_setvar_helper(ast,"FAXEXTEN",ast->exten);
if (ast_async_goto(ast, ast->context, "fax", 1, 0))
ast_log(LOG_WARNING, "Failed to async goto '%s' into fax of '%s'\n", ast->name, ast->context);
} else