hi
with asterisk 1.6.2, when receive a fax, there is an error
[Mar 12 12:57:58] NOTICE[4001]: res_fax.c:906 generic_fax_exec: Channel 'SIP/utelia_danno-0000000b' did not return a frame; probably hung up.
-- Channel 'SIP/utelia_danno-0000000b' FAX session '1' is complete, result: 'SUCCESS' (FAX_SUCCESS), error: 'NO_ERROR', pages: 1, resolution: '204x98', transfer rate: '14400', remoteSID: 'Studio Erredi'
== Spawn extension (ext-fax, s, 3) exited non-zero on 'SIP/utelia_danno-0000000b'
-- Executing [h@ext-fax:1] GotoIf("SIP/utelia_danno-0000000b", "0?failed") in new stack
[Mar 12 12:58:00] WARNING[4001]: ast_expr2.fl:445 ast_yyerror: ast_yyerror(): syntax error: syntax error, unexpected '<token>', expecting $end; Input:
""faxuser@miaemail.it"" = ""
^
[Mar 12 12:58:00] WARNING[4001]: ast_expr2.fl:449 ast_yyerror: If you have questions, please refer to doc/tex/channelvariables.tex.
-- Executing [h@ext-fax:2] GotoIf("SIP/utelia_danno-0000000b", """?end") in new stack
-- Goto (ext-fax,h,4)
this is because it sets the variable like this:
exten => 107,n,Set(FAX_RX_EMAIL="faxuser@miaemail.it")
changed manually to
exten => 107,n,Set(FAX_RX_EMAIL=faxuser@miaemail.it)
it works!