Support A2Billing :

provided by Star2Billing S.L.

Support A2Billing :
It is currently Thu Mar 28, 2024 5:46 pm
Auto Dialer Software


All times are UTC




Post new topic Reply to topic  [ 16 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: a2billing and Sip Trunks!
PostPosted: Wed Sep 03, 2008 2:22 pm 
Offline

Joined: Tue Sep 02, 2008 8:24 pm
Posts: 19
Hi!

I have a SIP trunk between a PBX Mitel ICP3300 and Asterisk (With FreePBX)
This is working Fine, for outgoing calls, the asterisk take the trunk. But I want to use the a2billing for controlling that.

I mean, if someone wants to call through the SIP trunk, It must to be with a Card Number...

Just for the SIP trunk!

Any Idea??
Thanks!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 5:59 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
It's difficult to give you a generic answer as there are many factors that may affect exactly how you accomplish this. You'll have to distinguish these calls that you want to pass to A2Billing in the Asterisk dialplan somehow.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 7:07 pm 
Offline

Joined: Fri Apr 11, 2008 5:20 pm
Posts: 22
I´ve managed it to work with freepbx, some time ago, I will try to explain..

First of all u need to set some configuration on a2billing.conf to let the it be logged without asking for the password of the sip friend.
I think it´s use_dnid = yes but I´m not sure about that.

Then you just configure the context of the extensions to "a2billing" and the accountcode to the number of you sip friend.

With this the extension will just use the a2billing routes. If you want it to call your local extensions or use any other routes you need to play a little with the context in the extensions.conf file.

Good Luck!


I will "steal" this topic to ask for somethink else:

When I make a call and it is redirected to my asterisk trunk it starts to be rated before the call is completed, how can I avoid this?

Thanks!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 7:32 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
edward.schaden wrote:
to let the it be logged without asking for the password of the sip friend.
I think it´s use_dnid = yes but I´m not sure about that.
use_dnid controls whether A2B uses the received number or prompts for a destination. If you want to authenticate by accountcode (rather than Caller ID) you must set cid_enable = NO.
Quote:
When I make a call and it is redirected to my asterisk trunk it starts to be rated before the call is completed, how can I avoid this?
This has been covered many, many times here. Assuming it's not your carrier providing false answer, then you must ensure you're not answering the call in Asterisk's dialplan and set answer_call = NO.


Last edited by stavros on Wed Sep 03, 2008 8:31 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 7:52 pm 
Offline

Joined: Tue Sep 02, 2008 8:24 pm
Posts: 19
stavros wrote:
You'll have to distinguish these calls that you want to pass to A2Billing in the Asterisk dialplan somehow.


Ok, but, how to made that ??

How can I define in the SIP trunk that calls pass to A2Billing ??

This is my configuration:

sip_additional.conf
[6000]
type=friend
secret=6000
record_out=Adhoc
record_in=Adhoc
qualify=yes
port=5060
pickupgroup=
nat=yes
mailbox=6000@device
host=dynamic
dtmfmode=rfc2833
dial=SIP/6000
context=from-internal
canreinvite=no
callgroup=
callerid=device <6000>
accountcode=
call-limit=50

[Mitel]
host=192.168.2.1
username=0000
secret=0000
type=peer
allow=ulaw
allow=alaw
allow=gsm
allow=g723
allow=g729
insecure=very
nat=yes

Ok, the extension takes the trunk with 123 + xxx or 2xx or 3xx .. etc

extensions_additional.conf
[outrt-002-Trunk-Mitel]
include => outrt-002-Trunk-Mitel-custom
exten => _123.1xx,1,Macro(user-callerid,SKIPTTL,)
exten => _123.1xx,n,Set(_NODEST=)
exten => _123.1xx,n,Macro(record-enable,${AMPUSER},OUT,)
exten => _123.1xx,n,Macro(dialout-trunk,2,${EXTEN:3},,)
exten => _123.1xx,n,Macro(outisbusy,)
exten => _2xx,1,Macro(user-callerid,SKIPTTL,)
exten => _2xx,n,Set(_NODEST=)
exten => _2xx,n,Macro(record-enable,${AMPUSER},OUT,)
exten => _2xx,n,Macro(dialout-trunk,2,${EXTEN},,)
exten => _2xx,n,Macro(outisbusy,)
exten => _3xx,1,Macro(user-callerid,SKIPTTL,)
exten => _3xx,n,Set(_NODEST=)
exten => _3xx,n,Macro(record-enable,${AMPUSER},OUT,)
exten => _3xx,n,Macro(dialout-trunk,2,${EXTEN},,)
exten => _3xx,n,Macro(outisbusy,)
exten => _5xx,1,Macro(user-callerid,SKIPTTL,)
exten => _5xx,n,Set(_NODEST=)
exten => _5xx,n,Macro(record-enable,${AMPUSER},OUT,)
exten => _5xx,n,Macro(dialout-trunk,2,${EXTEN},,)
exten => _5xx,n,Macro(outisbusy,)
exten => _94xxxxxxx,1,Macro(user-callerid,SKIPTTL,)
exten => _94xxxxxxx,n,Set(_NODEST=)
exten => _94xxxxxxx,n,Macro(record-enable,${AMPUSER},OUT,)
exten => _94xxxxxxx,n,Macro(dialout-trunk,2,${EXTEN},,)
exten => _94xxxxxxx,n,Macro(outisbusy,)

This works FINE! but, I really don't know how can I made pass this for A2Billing....

Please, if someone have any idea...

THANKS!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 8:15 pm 
Offline

Joined: Fri Apr 11, 2008 5:20 pm
Posts: 22
Thanks stravos! Sorry to ask this again! But i couldn´t find a right key word to serach on this forum, sorry!


sadzas wrote:
stavros wrote:
You'll have to distinguish these calls that you want to pass to A2Billing in the Asterisk dialplan somehow.


This is my configuration:

sip_additional.conf
[6000]
type=friend
secret=6000
record_out=Adhoc
record_in=Adhoc
qualify=yes
port=5060
pickupgroup=
nat=yes
mailbox=6000@device
host=dynamic
dtmfmode=rfc2833
dial=SIP/6000
context=from-internal
canreinvite=no
callgroup=
callerid=device <6000>
accountcode=
call-limit=50


wouldn´t it be cid_enable instead of use_cnid?
set cid_enable=no at a2billing.conf

set on the extension:
context=a2billing
accountcode="number of a2billing sipfriend"


Hugs!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 8:36 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
edward.schaden wrote:
wouldn´t it be cid_enable instead of use_cnid?
set cid_enable=no at a2billing.conf
Yes, you're quite right. I thought I'd corrected that once already.
Quote:
But i couldn´t find a right key word to serach on this forum, sorry!
I think 'wholesale' returns useful results. You may have to follow a chain of links to get to the full answer as this has been asked so many times. I summarised the (most important) applicable configuration directives a couple of weeks ago.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 8:50 pm 
Offline

Joined: Tue Sep 02, 2008 8:24 pm
Posts: 19
edward.schaden wrote:
wouldn´t it be cid_enable instead of use_cnid?
set cid_enable=no at a2billing.conf

set on the extension:
context=a2billing
accountcode="number of a2billing sipfriend"

Hugs!


Thanks for the quickly answer...
Ok, I already did that, but now I can't make calls from this extension. It's said "Call Failed: Not Found"

¿?

Guys, something is missing here... I mean, This is all I have to set?? What about the extensions_custom.conf or sip_general_additional.conf ??

Well, for now, I can't make calls!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 03, 2008 9:07 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
sadzas wrote:
It's said "Call Failed: Not Found"
If you show us the full output of the Asterisk console (with 'set verbose 15') we stand a better chance of understanding where you are failing. Reading it would no doubt be informative for you too.
Quote:
What about the extensions_custom.conf
I guess we're assuming you made the changes to that file necessary for A2B. Consult the installation guide.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 1:29 pm 
Offline

Joined: Tue Sep 02, 2008 8:24 pm
Posts: 19
Stavros, thanks a LOT for your patience....

This is what happened now:

Doesn't matter the dialing number, now always ask for the Card Number... but, It's ok with that, I'm worry because, when I dial the Card Number, the system recognized it and tell me my credit, but the voice
tell me "Unavailable number" please dial again!

¿?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 2:11 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
There's probably some problem with your call plan, rate cards, prefix-stripping or trunk definitions. Read what the console says whilst placing a call.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 2:30 pm 
Offline

Joined: Tue Sep 02, 2008 8:24 pm
Posts: 19
mmmm...

200.xx.xx.87 = Asterisk
200.xx.xx.85 = X-Lite

SIP/2.0 200 OK
Via: SIP/2.0/UDP 200.xx.xx.85:59484;branch=z9hG4bK-d8754z-914f3e654c737935-1---d8754z-;received=200.xx.xx.85
From: "6000"<sip:[email protected]>;tag=6e27cc53
To: "220"<sip:[email protected]>;tag=as2ec59a64


It's looks fine to me...

Call-ID: NTNkNGZjNTQ5NTMwZmY0ODk4ZWMwMWExY2RhMGE4NjE.
CSeq: 3 BYE
User-Agent: Asterisk PBX
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY
Supported: replaces
Contact: <sip:[email protected]>
Content-Length: 0

<------------>
Really destroying SIP dialog 'NTNkNGZjNTQ5NTMwZmY0ODk4ZWMwMWExY2RhMGE4NjE.' Method: BYE
Reliably Transmitting (NAT) to 200.xx.xx.85:59484:
OPTIONS sip:[email protected]:59484;rinstance=f7c95c8e40a5f2de SIP/2.0
Via: SIP/2.0/UDP 200.xx.xx.87:5060;branch=z9hG4bK56a31c85;rport
From: "Unknown" <sip:[email protected]>;tag=as2fcbcb03
To: <sip:[email protected]:59484;rinstance=f7c95c8e40a5f2de>
Contact: <sip:[email protected]>


mmm... ¿Unknown??
what do you think??


Call-ID: [email protected].87
CSeq: 102 OPTIONS
User-Agent: Asterisk PBX
Max-Forwards: 70
Date: Thu, 04 Sep 2008 14:24:51 GMT
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY
Supported: replaces
Content-Length: 0

---
asterisk*CLI>
<--- SIP read from 200.xx.xx.85:59484 --->
SIP/2.0 200 OK
Via: SIP/2.0/UDP 200.xx.xx.87:5060;branch=z9hG4bK56a31c85;rport=5060
Contact: <sip:200.xx.xx.85:59484>
To: <sip:[email protected]:59484;rinstance=f7c95c8e40a5f2de>;tag=e865513e
From: "Unknown"<sip:[email protected]>;tag=as2fcbcb03
Call-ID: [email protected].87
CSeq: 102 OPTIONS
Accept: application/sdp
Accept-Language: en
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO
User-Agent: X-Lite release 1100l stamp 47546
Content-Length: 0


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 3:13 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
Turn off sip debug (it's just useless noise given what you're debugging) and turn on 'set verbose 15'.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 3:28 pm 
Offline

Joined: Tue Sep 02, 2008 8:24 pm
Posts: 19
OK, thanks!

-- Executing [220@a2billing:1] Answer("SIP/6000-b6f02110", "") in new stack
-- Executing [220@a2billing:2] Wait("SIP/6000-b6f02110", "2") in new stack
-- Executing [220@a2billing:3] DeadAGI("SIP/6000-b6f02110", "a2billing.php") in new stack
-- Launched AGI Script /var/lib/asterisk/agi-bin/a2billing.php
a2billing.php: A2Billing AGI internal configuration:
a2billing.php: Array
a2billing.php: (
a2billing.php: [debug] => 1
a2billing.php: [asterisk_version] => 1_4
a2billing.php: [answer_call] => 1
a2billing.php: [play_audio] => 1
a2billing.php: [say_goodbye] =>
a2billing.php: [play_menulanguage] =>
a2billing.php: [force_language] =>
a2billing.php: [intro_prompt] =>
a2billing.php: [min_credit_2call] => 0
a2billing.php: [min_duration_2bill] => 0
a2billing.php: [notenoughcredit_cardnumber] => 1
a2billing.php: [notenoughcredit_assign_newcardnumber_cid] => 1
a2billing.php: [use_dnid] => 1
a2billing.php: [no_auth_dnid] => Array
a2billing.php: (
a2billing.php: [0] => 2400
a2billing.php: [1] => 2300
a2billing.php: )
a2billing.php:
a2billing.php: [number_try] => 3
a2billing.php: [force_callplan_id] =>
a2billing.php: [say_balance_after_auth] => 1
a2billing.php: [say_balance_after_call] =>
a2billing.php: [say_rateinitial] =>
a2billing.php: [say_timetocall] => 1
a2billing.php: [auto_setcallerid] => 1
a2billing.php: [force_callerid] =>
a2billing.php: [cid_sanitize] =>
a2billing.php: [cid_enable] =>
a2billing.php: [cid_askpincode_ifnot_callerid] => 1
a2billing.php: [cid_auto_assign_card_to_cid] => 1
a2billing.php: [cid_auto_create_card] =>
a2billing.php: [cid_auto_create_card_len] => 10
a2billing.php: [cid_auto_create_card_typepaid] => POSTPAY
a2billing.php: [cid_auto_create_card_credit] => 0
a2billing.php: [cid_auto_create_card_credit_limit] => 1000
a2billing.php: [cid_auto_create_card_tariffgroup] => 6
a2billing.php: [callerid_authentication_over_cardnumber] =>
a2billing.php: [sip_iax_friends] =>
a2billing.php: [sip_iax_pstn_direct_call_prefix] => 555
a2billing.php: [sip_iax_pstn_direct_call] =>
a2billing.php: [ivr_voucher] =>
a2billing.php: [ivr_voucher_prefix] => 8
a2billing.php: [jump_voucher_if_min_credit] =>
a2billing.php: [extracharge_did] => Array
a2billing.php: (
a2billing.php: [0] =>
a2billing.php: )
a2billing.php:
a2billing.php: [extracharge_fee] => Array
a2billing.php: (
a2billing.php: [0] =>
a2billing.php: )
a2billing.php:
a2billing.php: [extracharge_buyfee] => Array
a2billing.php: (
a2billing.php: [0] =>
a2billing.php: )
a2billing.php:
a2billing.php: [international_prefixes] => Array
a2billing.php: (
a2billing.php: [0] => 011
a2billing.php: [1] => 00
a2billing.php: [2] => 09
a2billing.php: )
a2billing.php:
a2billing.php: [dialcommand_param] => |60|HRgrL(%timeout%:61000:30000)
a2billing.php: [dialcommand_param_sipiax_friend] => |60|HRgirL(3600000:61000:30000)
a2billing.php: [switchdialcommand] =>
a2billing.php: [failover_recursive_limit] => 2
a2billing.php: [maxtime_tocall_negatif_free_route] => 5400
a2billing.php: [send_reminder] =>
a2billing.php: [record_call] =>
a2billing.php: [monitor_formatfile] => gsm
a2billing.php: [agi_force_currency] =>
a2billing.php: [currency_association] => Array
a2billing.php: (
a2billing.php: [0] => usd:dollars
a2billing.php: [1] => mxn:pesos
a2billing.php: [2] => eur:euros
a2billing.php: [3] => all:credit
a2billing.php: )
a2billing.php:
a2billing.php: [file_conf_enter_destination] => prepaid-enter-dest
a2billing.php: [file_conf_enter_menulang] => prepaid-menulang2
a2billing.php: [callback_bill_1stleg_ifcall_notconnected] => 1
a2billing.php: [logger_enable] => 1
a2billing.php: [log_file] => /tmp/a2billing.log
a2billing.php: [currency_association_internal] => Array
a2billing.php: (
a2billing.php: [usd] => dollars
a2billing.php: [mxn] => pesos
a2billing.php: [eur] => euros
a2billing.php: [all] => credit
a2billing.php: )
a2billing.php:
a2billing.php: [ivr_voucher_prefixe] => 8
a2billing.php: )
a2billing.php:
a2billing.php: file:a2billing.php - line:78 - IDCONFIG : 1
a2billing.php: file:a2billing.php - line:79 - MODE : standard
a2billing.php: file:a2billing.php - line:91 - AGI Request:
a2billing.php: file:a2billing.php - line:92 - Array
a2billing.php: (
a2billing.php: [agi_request] => a2billing.php
a2billing.php: [agi_channel] => SIP/6000-b6f02110
a2billing.php: [agi_language] => en
a2billing.php: [agi_type] => SIP
a2billing.php: [agi_uniqueid] => 1220542245.6
a2billing.php: [agi_callerid] => 6000
a2billing.php: [agi_calleridname] => device
a2billing.php: [agi_callingpres] => 0
a2billing.php: [agi_callingani2] => 0
a2billing.php: [agi_callington] => 0
a2billing.php: [agi_callingtns] => 0
a2billing.php: [agi_dnid] => 220
a2billing.php: [agi_rdnis] => unknown
a2billing.php: [agi_context] => a2billing
a2billing.php: [agi_extension] => 220
a2billing.php: [agi_priority] => 3
a2billing.php: [agi_enhanced] => 0.0
a2billing.php: [agi_accountcode] => 0145257124
a2billing.php: )
a2billing.php:
a2billing.php: file:Class.A2Billing.php - line:621 - get_agi_request_parameter = 6000 ; SIP/6000-b6f02110 ; 1220542245.6 ; 0145257124 ; 220
a2billing.php: file:a2billing.php - line:141 - [ANSWER CALL]
a2billing.php: file:Class.A2Billing.php - line:1640 - SELECT credit, tariff, activated, inuse, simultaccess, typepaid, creditlimit, language, removeinterprefix, redial, enableexpire, UNIX_TIMESTAMP(expirationdate), expiredays, nbused, UNIX_TIMESTAMP(firstusedate), UNIX_TIMESTAMP(cc_card.creationdate), cc_card.currency, cc_card.lastname, cc_card.firstname, cc_card.email, cc_card.uipass, cc_card.id_campaign, cc_card.id, useralias FROM cc_card LEFT JOIN cc_tariffgroup ON tariff=cc_tariffgroup.id WHERE username='0145257124'
a2billing.php: file:Class.A2Billing.php - line:1714 - [SET CHANNEL(language) es]
a2billing.php: file:Class.A2Billing.php - line:654 - [CARD STATUS UPDATE : UPDATE cc_card SET inuse=inuse+1 WHERE username='0145257124']
a2billing.php: file:Class.A2Billing.php - line:1969 - [A2Billing] SAY BALANCE : 10.00000
a2billing.php:
a2billing.php: file:Class.A2Billing.php - line:1148 - [CURRENCY : USD]
-- Playing 'prepaid-you-have' (escape_digits=#) (sample_offset 0)
-- <SIP/6000-b6f02110> Playing 'digits/10' (language 'es')
-- Playing 'dollars' (escape_digits=#) (sample_offset 0)
a2billing.php: file:Class.A2Billing.php - line:1400 - [AUTO SetCallerID]
a2billing.php: file:Class.A2Billing.php - line:1406 - [REQUESTED SetCallerID : 6000]
a2billing.php: file:Class.A2Billing.php - line:1417 - [EXEC SetCallerID : 6000]
a2billing.php: file:a2billing.php - line:172 - [CHANNEL STATUS : 6 = Line is up]
a2billing.php: file:a2billing.php - line:173 - [CREDIT : 10.00000][CREDIT MIN_CREDIT_2CALL : 0]
a2billing.php: file:Class.A2Billing.php - line:676 - 1 && && 3&& 0
a2billing.php: file:Class.A2Billing.php - line:701 - DESTINATION ::> 220
a2billing.php: file:Class.A2Billing.php - line:703 - RULES APPLY ON DESTINATION ::> 220
a2billing.php: file:Class.A2Billing.php - line:739 - ERROR ::> RateEngine didnt succeed to match the dialed number over the ratecard (Please check : id the ratecard is well create ; if the removeInter_Prefix is set according to your prefix in the ratecard ; if you hooked the ratecard to the Call Plan)
-- Playing 'prepaid-dest-unreachable' (escape_digits=#) (sample_offset 0)
a2billing.php: file:a2billing.php - line:172 - [CHANNEL STATUS : 6 = Line is up]
a2billing.php: file:a2billing.php - line:173 - [CREDIT : 10.00000][CREDIT MIN_CREDIT_2CALL : 0]
a2billing.php: file:Class.A2Billing.php - line:676 - 0 && && 3&& 1
-- <SIP/6000-b6f02110> Playing 'prepaid-enter-dest' (language 'es')
a2billing.php: file:Class.A2Billing.php - line:683 - RES DTMF : -1
a2billing.php: file:Class.A2Billing.php - line:701 - DESTINATION ::> -1
a2billing.php: file:Class.A2Billing.php - line:703 - RULES APPLY ON DESTINATION ::> -1
-- Playing 'prepaid-invalid-digits' (escape_digits=#) (sample_offset 0)
a2billing.php: file:a2billing.php - line:172 - [CHANNEL STATUS : 6 = Line is up]
a2billing.php: file:a2billing.php - line:173 - [CREDIT : 10.00000][CREDIT MIN_CREDIT_2CALL : 0]
a2billing.php: file:Class.A2Billing.php - line:676 - 0 && && 3&& 2
-- <SIP/6000-b6f02110> Playing 'prepaid-enter-dest' (language 'es')
a2billing.php: file:Class.A2Billing.php - line:683 - RES DTMF : -1
a2billing.php: file:Class.A2Billing.php - line:701 - DESTINATION ::> -1
a2billing.php: file:Class.A2Billing.php - line:703 - RULES APPLY ON DESTINATION ::> -1
-- Playing 'prepaid-invalid-digits' (escape_digits=#) (sample_offset 0)
a2billing.php: file:Class.A2Billing.php - line:654 - [CARD STATUS UPDATE : UPDATE cc_card SET inuse=inuse-1 WHERE username='0145257124']
-- AGI Script a2billing.php completed, returning -1


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 3:36 pm 
Offline
Moderator
User avatar

Joined: Thu Jun 22, 2006 2:19 pm
Posts: 2890
Location: Devon, UK
sadzas wrote:
a2billing.php: file:Class.A2Billing.php - line:703 - RULES APPLY ON DESTINATION ::> 220
a2billing.php: file:Class.A2Billing.php - line:739 - ERROR ::> RateEngine didnt succeed to match the dialed number over the ratecard (Please check : if the ratecard is well create ; if the removeInter_Prefix is set according to your prefix in the ratecard ; if you hooked the ratecard to the Call Plan)
So you've proven my earlier guess:
stavros wrote:
There's probably some problem with your call plan, rate cards, prefix-stripping or trunk definitions.
Perhaps you should read the documentation on the wiki as to how ratecards, callplans,etc are configured.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 16 posts ]  Go to page 1, 2  Next
Voice Broadcast System


All times are UTC


Who is online

Users browsing this forum: No registered users and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group