--
You received this message because you are subscribed to the Google Groups "InSTEDD Technology Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to instedd-tech...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Kakada Chheang
Software Developer, InSTEDD iLab Southeast Asia
http://www.ilabsoutheastasia.org
Office: +855 23 996750
Mobile: +855 69 860 012
Skype: kakada.chheang
email: kak...@instedd.org
twitter: @iLabSEA
facebook: www.facebook.com/iLabSEA
I think, you can add this option {callerid, CallerId} to ami_client:originate method in dispatch method in asterisk_broker.erl and the caller id should be the channel number which you can get by CallerId = channel:number(Channel).Please run the command make deps in project_folder/broker directory and then sudo restart verboice to reload the Erlang application.hope it may help you.Regards,Kakada
On Tue, Feb 25, 2014 at 3:15 PM, maina maish <maina...@gmail.com> wrote:
Hi All,
How can i fix From:"Anonymous" <sip:Anonymous@anonymous.invalid>; when sending IVR calls? I need calls to display the number configured on voice channel.
I cant seem to find where to edit in asterisk or so.
--
You received this message because you are subscribed to the Google Groups "InSTEDD Technology Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to instedd-tech...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I think, you can add this option {callerid, CallerId} to ami_client:originate method in dispatch method in asterisk_broker.erl and the caller id should be the channel number which you can get by CallerId = channel:number(Channel).Please run the command make deps in project_folder/broker directory and then sudo restart verboice to reload the Erlang application.hope it may help you.Regards,Kakada
On Tue, Feb 25, 2014 at 3:15 PM, maina maish <maina...@gmail.com> wrote:
Hi All,
How can i fix From:"Anonymous" <sip:Anonymous@anonymous.invalid>; when sending IVR calls? I need calls to display the number configured on voice channel.
I cant seem to find where to edit in asterisk or so.
--
You received this message because you are subscribed to the Google Groups "InSTEDD Technology Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to instedd-tech...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
make deps says, it up to date mean ur changed doesn't apply, please make sure you modified on the right location.
make deps says, it up to date mean ur changed doesn't apply, please make sure you modified on the right location.
On Feb 25, 2014 5:56 PM, "maina maish" <maina...@gmail.com> wrote:
Done,
dispatch(#session{session_id = SessionId, channel = Channel, address = Address}) ->
CallerId = channel:number(Channel),
DialAddress = dial_address(Channel, Address),
{ok, BrokerPort} = application:get_env(broker_port),
ami_client:originate([
{callerid, CallerId},
{channel, DialAddress},
{application, "AGI"},
{data, ["agi://localhost:", integer_to_list(BrokerPort), ",", SessionId]},
{async, true},
{actionid, SessionId},
{timeout, 60000},
{variable, ["verboice_session_id=", SessionId]}
]).
/opt/verboice/broker# make deps
make: `deps' is up to date.
sudo restart verboice
verboice start/running
But still am getting "Anonymous" on calls:
From:"Anonymous" <sip:Anonymous@anonymous.invalid>;tag=as6610985f
To:<sip:XXXX@XXXXX>;tag=jWWBhg3cAhY9c.B1
Via:SIP/2.0/UDP XXXX:5060;branch=z9hG4bK31462b02;rport
Call-ID:7515bfcb7e24532735ca0bce35afd81b@XXXX
CSeq:102 INVITE
Reason:X.int ;reasoncode=0x00000C01;add-info=0135.0001.0000
<------------->
--- (8 headers 0 lines) ---
-- Got SIP response 484 "" back from XXXXX:5060
Transmitting (NAT) to XXXX:5060:
ACK sip:XXXX@XXXX SIP/2.0
Via: SIP/2.0/UDP XXXX:5060;branch=z9hG4bK31462b02;rport
Max-Forwards: 70
From: "Anonymous" <sip:Anonymous@anonymous.invalid>;tag=as6610985f
To: <sip:XXXXX@XXXXX>;tag=jWWBhg3cAhY9c.B1
Contact: <sip:Anonymous@XXXX:5060>
I mean the deployment directory, are you deploy Verboice from source via Capistrano or using vagrant?
Please try to run command: make -C broker deps in /opt/verboice/broker/ directory.
Oh sorry please run the command: make -C broker deps in /opt/verboice/ directory
Hi All,
How can i fix From:"Anonymous" <sip:Anonymous@anonymous.invalid>; when sending IVR calls? I need calls to display the number configured on voice channel.
--
You received this message because you are subscribed to the Google Groups "InSTEDD Technology Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to instedd-tech...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Hi All,
How can i fix From:"Anonymous" <sip:Anonymous@anonymous.invalid>; when sending IVR calls? I need calls to display the number configured on voice channel.