Disabling CDR For All Dialed Parties In Asterisk 12

Home » Asterisk Users » Disabling CDR For All Dialed Parties In Asterisk 12
Asterisk Users 2 Comments

Hello, is it possible to disable the CDR record creation for all dialed parties? From my limited testing it looks like CDR_PROP(disable) is effective only for the first party (the one specified before the first ampersand in the Dial application argument) and I can’t find any way to disable it for the other ones (I think the CDR in question is written after the Dial completes). Is it by design? Is there any other known way?

Here is my simple testing dialplan:

2 thoughts on - Disabling CDR For All Dialed Parties In Asterisk 12

  • Not sure if it’ll work for your specific use. But I always use app nocdr.

    exten => 1,1,NoCDR
    exten => 1,2,Dial(SIP/test,30)

    Nick Olsen Network Operations (855) FLSPEED x106

    ————————————–

  • NoCDR doesn’t seem to work differently from CDR_PROP(disable), but it is deprecated in Astersisk 12. Anyway, thanks.
     
    Please excuse me if this reply goes to wrong place and/or if formatting is incorrect. This is my first time posting/replying in a mailing list.
     
    W dniu 2014-09-16 18:54:59 użytkownik Nick Olsen napisał:
    Not sure if it’ll work for your specific use. But I always use app nocdr.
     
    exten => 1,1,NoCDR
    exten => 1,2,Dial(SIP/test,30)
     
    Nick Olsen Network Operations
    (855) FLSPEED  x106
     
    From: “janusz_1942”
    Sent: Tuesday, September 16, 2014 12:43 PM
    To: asterisk-users@lists.digium.com Subject: [asterisk-users] Disabling CDR for all dialed parties in Asterisk 12
     
    Hello, is it possible to disable the CDR record creation for all dialed parties? From my limited testing it looks like CDR_PROP(disable) is effective only for the first party (the one specified before the first ampersand in the Dial application argument) and I can’t find any way to disable it for the other ones (I think the CDR in question is written after the Dial completes). Is it by design? Is there any other known way?
    Here is my simple testing dialplan: