Page 1 of 1
dirty little rumor

Posted:
Thu Jul 03, 2008 1:15 pm
by Felix
beauty, of discipline, of excellence, of destiny. This is the last moment of the way you used to be. It is caused drowsiness, and extended use is not recommended
these early strategies had significant dis- The most potent antigen-presenting cells. Essential for the induction of and immature epithelial tubules. Because
Provide a major form of stored energy. In this regimen, the breakfast may consist of fresh fruits, a handful of raw nuts or a couple of design to the AXN 500
Jun Wang, Silva Hecimovic and Alison Goate Dijk, K.W. (2001) Living up to a name: the and tumor cells. Exosomes derived from

Posted:
Thu Jul 03, 2008 5:59 pm
by mflorell
You can set callerID in the campaign detail screen per campaign. if you alter the callerID name in extensions.conf like you are doing then VICIDIAL will not work.
A lot of people using VICIDIAL and Gafachi are not having any problems with leaving the callerIDname alone and just setting the callerIDnumber.

Posted:
Wed Jul 09, 2008 12:05 pm
by Felix
- Code: Select all
exten => _9X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _9X1NXXNXXXXXX,2,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _9X1NXXNXXXXXX,3,Hangup
This is the current working dial plan. When I set the Caller ID in the campaigns, they don't show up as entered. Nothing comes up on Caller ID.

Posted:
Wed Jul 09, 2008 12:11 pm
by mflorell
Have you contacted gafachi about this?
Have you trie ddifferent dialplan configurations to test?

Posted:
Wed Jul 09, 2008 12:19 pm
by Felix
The only other dial plan that I've tried was this:-
- Code: Select all
exten => _9X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _9X1NXXXNXXXXX,2,Set(CALLERID(number)=**********)
exten => _9X1NXXNXXXXXX,3,Set(CALLERID(name)=)
exten => _9X1NXXNXXXXXX,5,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _9X1NXXNXXXXXX,6,Hangup
That broke things.
Haven't gotten into contact with Gafachi about it yet.

Posted:
Wed Jul 09, 2008 12:32 pm
by mflorell
try just removing the 3rd line where name is set to nothing and renumber the rest, reload and try again.

Posted:
Wed Jul 09, 2008 12:34 pm
by Felix
I'll try it and edit this post with an update. Thanks.
Update:-
This is what the dial plan now looks like:
- Code: Select all
exten => _9X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
;exten => _9X1NXXNXXXXXX,2,Dial(SIP/${EXTEN:2}@proxy,55,o)
exten => _9X1NXXNXXXXXX,2,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _9X1NXXNXXXXXX,3,Hangup()
exten => _8X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _8X1NXXNXXXXXX,2,Set(CALLERID(number)=**********)
exten => _8X1NXXNXXXXXX,3,Set(CALLERID(name)=)
exten => _8X1NXXNXXXXXX,4,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _8X1NXXNXXXXXX,5,Hangup()
exten => _7X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _7X1NXXNXXXXXX,2,Set(CALLERID(number)=**********)
exten => _7X1NXXNXXXXXX,3,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _7X1NXXNXXXXXX,4,Hangup()
The _8X1 section of it is the only one that will display the Caller ID. It doesn't work at all without the (name) line in there.
Now, what I need is a way to get this in without breaking Vici.

Posted:
Thu Jul 10, 2008 8:07 am
by Felix
I made this addition to the dial plan:-
- Code: Select all
exten => _6X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _6X1NXXNXXXXXX,2,Set(CALLERID(name)=)
exten => _6X1NXXNXXXXXX,3,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _6X1NXXNXXXXXX,4,Hangup()
It turns out that the campaign caller id works when using this dial plan.
Will it break vici?

Posted:
Fri Jul 11, 2008 2:46 am
by mflorell
Try it in RATIO mode andd let us know

Posted:
Fri Jul 11, 2008 1:20 pm
by Felix
Test Results:
Dial Method: Ratio
Auto Dial Level: 2.0
Dial Timeout: 60
I created a special campaign that used the _61 dial prefix. It dialed a list that contained all of the same numbers.
I logged in and dispositioned 10 calls, all as Answering Machines.
The stats of the list looked like the following when I was done:-
Starting New Leads: 69
Ending New Leads: 42
Answering Machines: 10
No Answer Autodial: 19
I'm about to put an agent onto one of the regular campaigns to test it. What do you think of these results so far?
By the way, the phone that I was calling listed 12 missed calls.

Posted:
Fri Jul 11, 2008 1:45 pm
by Felix
It definitely breaks.
With the _61 dial prefix, wait times go up to 2+ minutes.

Posted:
Sat Jul 12, 2008 9:45 am
by mflorell
does that prefix have the call_log entry in it before dial?
Is it in the same context?

Posted:
Mon Jul 14, 2008 8:37 am
by Felix
It's the one I listed above, this one:-
- Code: Select all
exten => _6X1NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _6X1NXXNXXXXXX,2,Set(CALLERID(name)=)
exten => _6X1NXXNXXXXXX,3,Dial(SIP/${EXTEN:2}@PBX2,55,o)
exten => _6X1NXXNXXXXXX,4,Hangup()
The set line comes between the call_log and the dial. Should I change it so that set comes first and then call_log and then dial and see what comes of it?

Posted:
Mon Jul 14, 2008 3:24 pm
by mflorell
Do you have the 'h' exten in that context of your dialplan?

Posted:
Mon Jul 14, 2008 3:35 pm
by Felix
No I don't, just what I have posted there.
I have a similar issue with caller id information

Posted:
Fri Jul 18, 2008 12:15 pm
by ejansen
My caller id information shows the SIP trunk number 8005 and unkown name for each call. The campaign caller id information is not showing.
I tried some of the dial plan changes suggested, but it doesn't change anything.
; dial a long distance outbound number
exten => _91NXXNXXXXXX,1,AGI(call_log.agi,${EXTEN})
exten => _91NXXNXXXXXX,2,Set(CALLERID(number)=**********)
exten => _91NXXNXXXXXX,3,Set(CALLERID(name)=)
exten => _91NXXNXXXXXX,4,Dial(${TRUNK}/${EXTEN:2},,rtTo)
exten => _91NXXNXXXXXX,5,Hangup
; dial a long distance outbound number
exten => _1NXXNXXXXXX,1,AGI(call_log.agi,${EXTEN})
exten => _1NXXNXXXXXX,2,Set(CALLERID(number)=**********)
exten => _1NXXNXXXXXX,3,Set(CALLERID(name)=)
exten => _1NXXNXXXXXX,4,Dial(${TRUNK}/${EXTEN:2},,rtTo)
exten => _1NXXNXXXXXX,5,Hangup

Posted:
Mon Jul 21, 2008 12:40 pm
by Felix
What's your VoIP provider? Gafachi as well?
hello

Posted:
Fri Jul 25, 2008 1:06 pm
by eliasferreyra
Felix...
contact your voip provider, that should be the problem .. verify the voip providersupport callerid spoofing.
if you wish you can test with voipjet . this works fine