Hi,<br><br>I would like to implement (with Asterisk 1.6) something like this :<br>- when you answer a call and a fax is detected by Asterisk, the other party is forwarded to ReceiveFax application and a pre-recorded message &quot;You are receiving an incoming fax&quot; is played to the receiving party.<br>
<br>Using fax standard extension, I can handle the first part (forwarding caller to ReceiveFax app) but I don&#39;t know how to play a message to callee.<br>A suggestion ?<br><br>My first idea was to add an h standard extension block along fax standard extension but as the called party receives both voice and fax calls, I don&#39;t really how I could specifically fax calls within h standard extension block :<br>
<br>context incoming-calls {<br>_XXXX =&gt; {<br>     Dial (....);<br>}<br>catch fax {<br>... ReceiveFax();<br>}<br>catch h {<br>... if (fax comes in) {<br>         Playback();<br>    }<br>}<br><br><br>Regards<br>