asterisk users
2011-Nov-18  20:02 UTC
[asterisk-users] Setting outbound PRI Callerid with Asterisk 10.0.0-beta2
Hello all,
I'm having trouble setting the callerid name and number independently
with the following configuration:
Asterisk 10.0.0-beta2
DAHDI Version: 2.5.0 Echo Canceller: HWEC, MG2
libpri version: 1.4.12
Allstream PRI 23+D / dms100
Test cases:
(1) Using the form:
    same => n,Set(CALLERID(all)="AB&CD COMPANY"
<5191112222>)
    same => n,Dial(Dahdi/G1/5193334444)
both the caller ID and name are passed correctly to the called party
(2) However, if we try to set the number and name separately
  same => n,Set(CALLERID(name)="AB&CD COMPANY")
  same => n,Set(CALLERID(number)=5191112222)
  same => n,Dial(Dahdi/G1/5193334444)
then with some called numbers, we get a congestion message ("All
circuits are busy") unless the first CALLERID(name) line is commented
out.
With other numbers the call completes, but the received callerid shows
as: "CALLERID(all): "\" <5191112222>"
Is there some subtle difference between these two methods, or would
anyone have some experience with this?
Thanks for any comments, and Happy Friday!
Danny Nicholas
2011-Nov-18  20:05 UTC
[asterisk-users] Setting outbound PRI Callerid with Asterisk 10.0.0-beta2
Just a hunch
  same => n,Set(CALLERID(name)="AB\&CD COMPANY")
-----Original Message-----
From: asterisk-users-bounces at lists.digium.com
[mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of asterisk users
Sent: Friday, November 18, 2011 2:03 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [asterisk-users] Setting outbound PRI Callerid with Asterisk
10.0.0-beta2
Hello all,
I'm having trouble setting the callerid name and number independently with
the following configuration:
Asterisk 10.0.0-beta2
DAHDI Version: 2.5.0 Echo Canceller: HWEC, MG2 libpri version: 1.4.12
Allstream PRI 23+D / dms100
Test cases:
(1) Using the form:
    same => n,Set(CALLERID(all)="AB&CD COMPANY"
<5191112222>)
    same => n,Dial(Dahdi/G1/5193334444)
both the caller ID and name are passed correctly to the called party
(2) However, if we try to set the number and name separately
  same => n,Set(CALLERID(name)="AB&CD COMPANY")
  same => n,Set(CALLERID(number)=5191112222)
  same => n,Dial(Dahdi/G1/5193334444)
then with some called numbers, we get a congestion message ("All circuits
are busy") unless the first CALLERID(name) line is commented out.
With other numbers the call completes, but the received callerid shows
as: "CALLERID(all): "\" <5191112222>"
Is there some subtle difference between these two methods, or would anyone
have some experience with this?
Thanks for any comments, and Happy Friday!
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to
Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
Richard Mudgett
2011-Nov-18  20:43 UTC
[asterisk-users] Setting outbound PRI Callerid with Asterisk 10.0.0-beta2
> Hello all, > > I'm having trouble setting the callerid name and number independently > with the following configuration: > > Asterisk 10.0.0-beta2 > DAHDI Version: 2.5.0 Echo Canceller: HWEC, MG2 > libpri version: 1.4.12 > Allstream PRI 23+D / dms100 > > Test cases: > > (1) Using the form: > same => n,Set(CALLERID(all)="AB&CD COMPANY" <5191112222>) > same => n,Dial(Dahdi/G1/5193334444) > both the caller ID and name are passed correctly to the called party > > (2) However, if we try to set the number and name separately > same => n,Set(CALLERID(name)="AB&CD COMPANY")You do not need to quote the name here. Otherwise, the quotes are included as part of the name. Everything between the '=' and closing ')' less leading and trailing spaces is part of the name. For SIP this may be detrimental to the message format unless the quotes get escaped. Richard