[asterisk-users] utils.c: fwrite() returned error: Broken pipe how to solve it ???

2013-10-10 Thread akhilesh chand
Dear all, I want to make call through socket i have set code given below: #!/usr/bin/perl -w use IO::Socket::INET; sub asterisk_command () { # my $command=$_[0]; my $ami=IO::Socket::INET-new(PeerAddr='127.0.0.1',PeerPort=5038,Proto='tcp') or die failed to connect to

Re: [asterisk-users] utils.c: fwrite() returned error: Broken pipe how to solve it ???

2013-10-10 Thread Tony Mountifield
In article cae6_ne+dxtsgadtg0mp-9jumngxguwo4exadm_hrwc8opuo...@mail.gmail.com, akhilesh chand omakhileshch...@gmail.com wrote: I want to make call through socket i have set code given below: #!/usr/bin/perl -w use IO::Socket::INET; sub asterisk_command () { # my

Re: [asterisk-users] utils.c: fwrite() returned error: Broken pipe how to solve it ???

2013-10-10 Thread A J Stiles
On Thursday 10 October 2013, akhilesh chand wrote: Dear all, I want to make call through socket i have set code given below: #!/usr/bin/perl -w use IO::Socket::INET; sub asterisk_command () { # my $command=$_[0]; my

Re: [asterisk-users] utils.c: fwrite() returned error: Broken pipe how to solve it ???

2013-10-10 Thread Tony Mountifield
In article 201310101230.56058.asterisk_l...@earthshod.co.uk, A J Stiles asterisk_l...@earthshod.co.uk wrote: Also, as Asterisk runs on Unix-like systems, you don't really need the Microsoft-style \r\n line endings. Just an ordinary Unix-style \n on its own will suffice. It even saves a

Re: [asterisk-users] Calling a demo menu after voicemail authintication

2013-10-10 Thread Asmaa Ahmed
Thanks, It helps indeed!But what if I want to change the language based on user preferences for example How can I include it before the voicemail dialogue? Is there a possibility for doing that? To: asterisk-users@lists.digium.com From: kevin.lar...@pioneerballoon.com Date: Wed, 9 Oct 2013

Re: [asterisk-users] Using sqlite3 for CDR logging

2013-10-10 Thread Tech Support
Thanks for the feedback. I read someplace that the Berkeley DB was wicked fast and allowed for much higher concurrency. The only problem is that I have no idea how to implement it into Asterisk. Does anyone have any experience with something like this? Regards; John -Original Message-

[asterisk-users] asterisk 11.6 nat problem

2013-10-10 Thread Jeremy Kister
using asterisk 11.6.0-rc1 i just converted my nat=yes to nat=auto_force_rport,auto_comedia I have my asterisk box on the same subnet as a cisco 1760 (vgw1). a few times per day, Asterisk thinks vgw1 is dead (by qualify/options). A 'sip reload' always fixes the problem. i left 'sip set

Re: [asterisk-users] Failed to authenticate user 1000sip:1000@MY_OWN_IP_ADDRESS; tag=03f82bb9

2013-10-10 Thread Michelle Dupuis
Gareth: Did you check if your message (or security) log recorded anything during these attempts? If so, can you post the content of the logs during this attack? M From: asterisk-users-boun...@lists.digium.com [asterisk-users-boun...@lists.digium.com] On Behalf

Re: [asterisk-users] utils.c: fwrite() returned error: Broken pipe how to solve it ???

2013-10-10 Thread akhilesh chand
thanks a lot Tony On Thu, Oct 10, 2013 at 4:31 PM, Tony Mountifield t...@softins.co.ukwrote: In article cae6_ne+dxtsgadtg0mp-9jumngxguwo4exadm_hrwc8opuo...@mail.gmail.com, akhilesh chand omakhileshch...@gmail.com wrote: I want to make call through socket i have set code given below: