search for: resetcdrs

Displaying 20 results from an estimated 213 matches for "resetcdrs".

Did you mean: resetcdr
2009 Jul 15
1
ResetCDR after GotoIf doesn't set dst correctly, Is this a bug?
(Both on Asterisk 1.2 and 1.4) I was struggling to find out why my CDR was recording dst = h after a call hangup. It was working fine until I added a GotoIf statement before ResetCDR to calculate some value for userfield column. Today I tested and found out that if ResetCDR is put after GotoIf (or after if in AEL), it doesn't record correct value in dst column, and isntead puts 'h'
2013 Oct 04
1
multiple resetcdr calls have no effect
Hi All My dial plan has the following context: [sip-guest] exten => _!.,1, Answer exten => _!.,n, verbose(1,[${EXTEN}@${CONTEXT}]) exten => _!.,n, resetcdr(w) exten => _!.,n, resetcdr(w) exten => _!.,n, set(DNIS=${EXTEN}) exten => _!.,n, resetcdr(w) exten => _!.,n,
2009 Dec 03
1
only the first ResetCDR works after upgrade to 1.6
Hello - I am upgrading from asterisk v1.2 to v1.6 and I am seeing a problem with recording CDRs using MySQL. Unlike all of the other postings and web pages I have found on this issue, my installation successfully stores the -first- CDR, but nothing after that. As background info, I will note that I don't use CDRs for billing, but more in a logging fashion, to record how a given call
2008 May 05
2
ResetCDR() - v 1.4.19.1
Hello,I was using the ResetCDR() right after my IVR answered the calls to set them unanswered until or if somebody pick up the callI just upgraded to version 1.4.19.1 and now ... when the ResetCDR() function is called it seems to just erase the recordIs there another to set the status of the call unanswered ? is it a bug ?Thanks, -------------- next part -------------- An HTML attachment was
2010 Jul 12
0
ResetCDR not working after forced hangup
Hello, Asterisk party, If block the call before dialing (Hangup()), CDR's don't write to MySQL or CSV. Otherwise, if Hangup() is after Dial(), CDRs write normally. Here is the dialplan: ; we skipped dial, because the number is "blocked" exten => _X.,n(Finish),Hangup() exten => h,1,NoOP("hangup") exten => h,2,ResetCDR(w) exten => h,n,NoCDR() exten =>
2009 Mar 12
4
log to cdr each dialpan action, not only one record for each call
Hi to all. What can i do if a customer needs to log in the CDR all the dialpan actions related to a call? I mean, not only the lastapp e the lastdata but all the dialpan actions! I know that the actual CDR system store one record for each call (and for billing purposes this can be correct) but in some cases the approach needed is something similar to the queue_log. I know that exists ResetCDR
2004 Jan 23
1
exten=>h and ResetCDR
Hi friends, I have the entry exten => h,Hangup in my extensions.conf, and I am trying to record the call details for billing. From the wiki i found out that the use of "exten=>h,..." is not suggested for the CDRs. What impact will the use of 'h' make on CDRs? Also, what is the advantage of using ResetCDR with exten=>h? Regards... Girish
2010 Dec 22
0
CDR on MySQL
What would it do if you exten => h,1,ResetCDR(w) exten => h,2,NoCDR() exten => h,3,DEADAGI(get-unqiueid.php) I have not tried it but in theory it should write the first CDR and then kill the write of the second NO ANSWER CDR. Let me know if it works for you as I may need to do it on some of my h exten code as well. Bryant ---------------------------------------- From:
2004 Jan 19
3
Getting correct CDR info
I'd like to know how everyone else is going about getting correct CDR information for calls. Right now I notice that if a call come in and gets parked the CDR info doesn't how the correct info on who picked that call up, also when someone transfer a call there isn't a new record being made so the duration of the call shows up for who received the call and transferred it. I started
2003 Oct 07
1
[PATCH] allow announcements in app_dial
Hi. Since a customer requested us that feature, I wrote this little patch for app_dial to allow to play an announcement to the called party, as soon he answers. you can define the file to play in the dial() option, using A(filename). for example: exten => blah,1,Dial(Zap/blah,30,rA(/my/own/announce)Tt) that doesn't break anything ... feel free to blame me for anything bad this patch
2007 Apr 27
2
CDR changes in 1.4.3?
Hello all: I upgraded to 1.4.3 last night and use MySQL for CDR. I have noticed that 1.4.3 seems to log a lot of "crap" to CDR that 1.4.2 did not. I use a few macros in my dialplan to handle outgoing calls (lcr type stuff) and in addition to the proper CDR for the call itself I also have records to 's' in the same dest-context and entries to 's' in the default context.
2004 Jan 08
4
2nd call leg status?
Hi, okay heres what I want to do .. simple ivr, we take a call, answer it, play a menu, dial out based on options. No problems so far. The CDR always shows the call as answered as I answer the 1st leg to play the prompts, I am actually more interested in if the 2nd leg - the outbound part - has been answered or not before the call is hungup. How can I get this and record the information in
2007 Jun 06
1
CDR changes in 1.4.3?
Hey, I just found this in ML archives. I have pretty the same situation - i had very well written CDR processing engine on asterisk, making use of ResetCDRs, however now when we're migrating to 1.4, it's a bit pain to deal with extra CDR records. My engine is built so that MYSQL CDR can be used directly for reports (imagine - you get whatever report you need immediately). So, this way i don't have much processing abilities to remove unneces...
2005 Oct 17
0
Solved? => Playback audio before answered by a queue member
Regarding my previous post: "Playback audio before answered by a queue member" I added a ResetCDR() command at the middle: exten => XXXXXXXXXX,1,Background(audiofile) ;answers the channel immediately exten => XXXXXXXXXX,2,ResetCDR() ;clean slate exten => XXXXXXXXXX,3,Queue(Qname|tdn|||) ;new answer time written Looking at the CDR, the billsec is no longer the same as
2007 Sep 21
1
Authenticate() application and CDR
Dear all, I'm trying to configure Asterisk to be able to ask the caller to enter a given password in order to continue dialplan execution. I've tested this feature using the Authenticate application like this: exten => _X./5219,1,Answer exten => _X./5219,2,Authenticate(1234,a) exten => _X./5219,3,Playback(pin-number-accepted) exten => _X./5219,4,Dial(SIP/${EXTEN},120)
2010 Dec 20
2
Unexpected dialplan match
I was wondering why *foo at default should match '_*[0-9a-zA-Z].*0.' in 1.6.13. Who is making the parse error, * or me? CLI> dialplan show *foo at default '_*[0-9a-zA-Z].*0.' => 1. NoOp(${EXTEN}) [pbx_config] 2. Set(accountcode=${CUT(EXTEN,*,2)}) [pbx_config] 3. Set(extension=${CUT(EXTEN,*,3)}) [pbx_config]
2008 Mar 11
3
Call tracing - Asterisk 1.4
Hi guys I've just read this about the upcoming release of * 1.6: ?Better reporting through a new call event logging capability in Asterisk 1.6 will allow complete tracking of events that take place during a call. The goal, according to Fleming, is to provide more detail than traditional CDR (Call Detail Recording) features offer and to allow for more granular tracking and auditing.? That
2003 Dec 14
1
Error loading modem driver
When I attempt to start asterisk with my modem setup listed it will not start attached are the error messages i get and also the modem.conf that i am currently using. Any assistance would be greatly appreciated. running CVS ver 12/7/03, modified only to allow the RxFax and TxFax to compile and run with it (from http://www.opencall.org) just e-mail me privately if you need more info Thanks in
2009 Mar 30
2
Newbie trying to make calls outside via digium card and POTS line
Hello, This is my first asterisk installation, and having read up on the documentation, and trying several tutorials i'm unable to get my outbound route working. I'm certain it's an issue with my configuration and my inexperience with asterisk. So i have my POTS phone connected to my digium card, and when i make a call, I receive the "cannot be completed as dialed" message.
2005 Sep 14
1
TE110P - Asterisk@Home Install Problems
I am having problems sending and receiving calls over the T1. They never seem to connect - outbound keeps ringing, inbound gets busy. The T1 looks ok - no errors on the line. Any ideas on what is wrong? I have tried a variety of fxsks and fxoks configurations without avail. This is a single asterisk@home system with a single T1 card. Robbed Bit T1 ami, d4. ------------------inbound call