<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div><blockquote type="cite" class=""><div class="">On 21/04/2017, at 9:33 am, Fabio Moretti <<a href="mailto:fmoretti@tecytal.com" class="">fmoretti@tecytal.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><span style="font-family: Menlo-Regular; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">the point basically is: it is possibile for asterisk to log a call</span><br style="font-family: Menlo-Regular; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Menlo-Regular; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">without answering it? How to do it in the dialplan? Or I'm wasting time</span><br style="font-family: Menlo-Regular; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Menlo-Regular; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">because an analog line who enter asterisk is always answered?</span><br style="font-family: Menlo-Regular; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""></div></blockquote></div><br class=""><div class="">Yes.</div><div class=""><br class=""></div><div class="">Something similar to this will work (untested, possibly with syntax errors, but gives the idea):</div><div class=""><br class=""></div><div class=""><span class="Apple-tab-span" style="white-space:pre">       </span>exten => s,1,NoOp(Inbound call from callerID $CALLERID(num))</div><div class=""><div class=""><span class="Apple-tab-span" style="white-space:pre">     </span>exten => s,n,Hangup</div><div class=""><br class=""></div></div><div class="">The 'Hangup' will simply tell the FXS box (which you've used to terminate the line) that Asterisk isn't accepting the call.</div><div class=""><br class=""></div><div class="">One problem could be the FXS box re-inviting Asterisk over and over (causing duplicate NoOp logs), but you could add a Wait in there for 2-3 minutes before 'Hangup'. Not many calls would ring for more than 2-3 minutes. In fact the PSTN may limit the number of rings (I have a feeling here in NZ it's about 250 rings or so).</div><div class=""><br class=""></div><div class=""><div class=""><span class="Apple-tab-span" style="white-space: pre;"> </span>exten => s,1,NoOp(Inbound call from callerID $CALLERID(num))</div><div class=""><span class="Apple-tab-span" style="white-space: pre;"> </span>exten => s,n,Wait(180)</div><div class=""><span class="Apple-tab-span" style="white-space: pre;">       </span>exten => s,n,Hangup</div></div><div class=""></div><div class="">Pete</div><div class=""><br class=""></div></body></html>