Hi,

Suppose I have the following in my AEL dialplan:

context incoming-1 {
  _. => {
    Set(GROUP()=1);
    goto incoming|${EXTEN}|1;
    }
};

context incoming-2 {
  _. => {
    Set(GROUP()=2);
    goto incoming|${EXTEN}|1;
    }
};

context incoming {
  fax => {
    Do stuff for incoming fax...
    }
  _. => {
    Do stuff for incoming voice call...
    }
};

faxdetection is activated.

I'm expecting 'incoming-1' and 'incoming-2' to goto 'incoming' EVEN if Asterisk 
detects the call as being a fax BEFORE going to 'incoming'.
Is that correct? (ie. _. also matches 'fax')

Thanks,

Vieri


--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to