To have asterisk ignore incoming calls on an X100P fxo interface, do I have to just not configure it in zapata.conf, or is there a way to have the call ignored in a dialplan? Chris
> To have asterisk ignore incoming calls on an X100P fxo interface, do I > have to just not configure it in zapata.conf, or is there a way to > have the call ignored in a dialplan?Just define a context like this : [home-incoming] exten => s,1,Wait,1 ; Wait 2 seconds, to get callerid exten => s,2,Hangup And put that context in your zapata.conf for your line. This will let * get the CallerID in your CDR but it will not answer the call. hth