<div dir="ltr">




 Hi all,<br><br>It looks like people commonly use this kind of dialplan when receiving faxes on Asterisk, with a jump to extension fax during the Wait() if a fax tone is detected:<br><br>[start-here]<br>exten => _X.,1,Answer()<br>exten => _X.,n,Wait(n)<br>exten => _X.,n,...do stuff...<br>exten => _X.,n,Hangup()<br><br>exten => fax,1,Goto(fax-rx,receive,1)<br><br>[fax-rx]<br>exten => receive,1,...<br>exten => receive,n,...do stuff...<br>exten => receive,n,ReceiveFAX()<br><br>This is well suited in case Asterisk needs to receive both voice and fax calls. But what if Asterisk is only used to receive fax calls, can we start directly at the fax-rx context? I've heard that it's better to wait a few seconds before calling ReceiveFAX(), is it still necessary in case we don't actually need fax detection?<br><br>Simon </div>