Re: [asterisk-users] Click-to-call software in a hosted environment

2012-08-30 Thread A J Stiles
On Wednesday 29 August 2012, Carlos Alvarez wrote: For any of you doing hosted PBX service on Asterisk, do you have a reliable and secure click to dial solution? Particularly for Outlook, but since about 20% of our customers use Mac OS, I'd love to hear about some that work on that too. This

Re: [asterisk-users] Click-to-call software in a hosted environment

2012-08-29 Thread Andrew White
I usually custom code it. I've got a PHP interface set up on one of our asterisk boxes (locked down via IP range) that allows calls to be initiated via the script. I can interface with this via standard HTTP requests from anything I want. I've written solutions as Chrome/Firefox addons, local

Re: [asterisk-users] click to call

2012-07-11 Thread Danny Nicholas
This capability is implanted in Vtiger CRM and some other packages. If you wanted to do it in a stand-alone fashion, it's a relatively simple task. I did it in PERL using the Asterisk::Manager package. AFAIK there are PHP equivalents for this as well. From:

Re: [asterisk-users] click to call

2012-07-11 Thread Chris Bagnall
On the subject of click to call - admittedly not necessarily what the OP was after - I had some marketing blurb from VMware about Zimbra 8 this morning. Apparently one of the new shiny features is integrated C2C (and other unified comms stuff). Has anyone had a chance to play with the SDK as

Re: [asterisk-users] click to call

2012-07-11 Thread A J Stiles
On Wednesday 11 July 2012, alok srivastava wrote: dear is there any study material for implementing click to call in asterisk. plz help. thanks regards Dead simple! You need to install Apache on the Asterisk server if you haven't already. Then use a CGI script like this;

Re: [asterisk-users] click to call

2012-07-11 Thread Mike
On 12-07-11 10:46 AM, A J Stiles wrote: Then a GET request to /cgi-bin/place_call?tel=018118055ext=101 will place a call from extension 101 to telephone number 018118055 in context outgoing. Hopefully it doesn't need to be said, but if you are going to put this solution in place, please

Re: [asterisk-users] click to call

2012-07-11 Thread A J Stiles
On Wednesday 11 July 2012, Mike wrote: On 12-07-11 10:46 AM, A J Stiles wrote: Then a GET request to /cgi-bin/place_call?tel=018118055ext=101 will place a call from extension 101 to telephone number 018118055 in context outgoing. Hopefully it doesn't need to be said, but if you are going

Re: [asterisk-users] click to call

2012-07-11 Thread Mike
On 12-07-11 11:50 AM, A J Stiles wrote: Yes indeed. Note the 192.168 address I used in my other example -- the Asterisk server here is on the LAN side of the router, and there is no firewall rule anywhere forwarding to its port 80. If for some reason you have to run Asterisk on a box facing

Re: [asterisk-users] click to call

2011-06-17 Thread Roger Burton West
On Fri, Jun 17, 2011 at 05:20:39PM +, salaheddine elharit wrote: i want to use sip 223 in order to call phone number Is that meant to be the originator or the destination? Channel: gets the originator; Extension: gets the destination. Roger --

Re: [asterisk-users] click to call with php

2011-05-20 Thread Ishfaq Malik
If you are going to use call files don't write them directly to /var/spool/asterisk/outgoing/ write them in some temp directory and then move them to /var/spool/asterisk/outgoing/ Ish On Thu, 2011-05-19 at 10:58 -0600, Alejandro Mejia Evertsz wrote: You only need to tell your PHP script to

Re: [asterisk-users] click to call with php

2011-05-20 Thread A J Stiles
On Friday 20 May 2011, Dovid Bender wrote: I had issue with call files. They would lock up the system (this was 5 years ago so maybe things have changed.) Whenever you open a file for writing, a link is created in the containing folder's directory (which says where on the disk the file is

Re: [asterisk-users] click to call with php

2011-05-20 Thread salaheddine elharit
Ok thank you so much for all advice 2011/5/20 A J Stiles asterisk_l...@earthshod.co.uk On Friday 20 May 2011, Dovid Bender wrote: I had issue with call files. They would lock up the system (this was 5 years ago so maybe things have changed.) Whenever you open a file for writing, a

Re: [asterisk-users] click to call with php

2011-05-20 Thread A J Stiles
On Friday 20 May 2011, salaheddine elharit wrote: Ok thank you so much for all advice This might help you a bit, too: ?php $spool = /var/spool/asterisk/outgoing/; # outgoing callfile folder $filename = asterisk- . date(U) . - . $_SERVER[REMOTE_PORT] . .call; # this should end up being fairly

Re: [asterisk-users] click to call with php

2011-05-20 Thread salaheddine elharit
thanks a lot for your help and support 2011/5/20 A J Stiles asterisk_l...@earthshod.co.uk On Friday 20 May 2011, salaheddine elharit wrote: Ok thank you so much for all advice This might help you a bit, too: ?php $spool = /var/spool/asterisk/outgoing/; # outgoing callfile folder

Re: [asterisk-users] click to call with php

2011-05-20 Thread Mark Deneen
On Fri, May 20, 2011 at 4:38 AM, Ishfaq Malik i...@pack-net.co.uk wrote: If you are going to use call files don't write them directly to /var/spool/asterisk/outgoing/ write them in some temp directory and then move them to /var/spool/asterisk/outgoing/ Ish Make sure that your temp

Re: [asterisk-users] click to call with php

2011-05-20 Thread salaheddine elharit
thanks a lot for your advice i really appreciate it :) 2011/5/20 Mark Deneen mden...@gmail.com On Fri, May 20, 2011 at 4:38 AM, Ishfaq Malik i...@pack-net.co.uk wrote: If you are going to use call files don't write them directly to /var/spool/asterisk/outgoing/ write them in some temp

Re: [asterisk-users] click to call with php

2011-05-19 Thread Alejandro Mejia Evertsz
You only need to tell your PHP script to write a .call file on /var/spool/asterisk/outgoing/ directory using the syntax described here: http://www.voip-info.org/wiki/view/Asterisk+auto-dial+out I'm not a PHP programmer, so the PHP part is up to you hehe. There are other methods like using

Re: [asterisk-users] click to call with php

2011-05-19 Thread salaheddine elharit
ok thank you i will test this solution and i will update you :) 2011/5/19 Alejandro Mejia Evertsz ame...@gua.net You only need to tell your PHP script to write a .call file on /var/spool/asterisk/outgoing/ directory using the syntax described here:

Re: [asterisk-users] click to call with php

2011-05-19 Thread Dovid Bender
I had issue with call files. They would lock up the system (this was 5 years ago so maybe things have changed.) - Original Message - From: Alejandro Mejia Evertsz To: asterisk-users@lists.digium.com Sent: Thursday, May 19, 2011 19:58 Subject: Re: [asterisk-users] click

Re: [asterisk-users] click to call with php

2011-05-19 Thread Satish Barot
*To:* asterisk-users@lists.digium.com *Sent:* Thursday, May 19, 2011 19:58 *Subject:* Re: [asterisk-users] click to call with php You only need to tell your PHP script to write a .call file on /var/spool/asterisk/outgoing/ directory using the syntax described here: http://www.voip-info.org/wiki/view

Re: [asterisk-users] Click to call

2008-04-03 Thread Faraz R. Khan
Make one using phpagi: http://phpagi.sourceforge.net/ The AGI_AsteriskManager class should let you interface directly with Asterisk Manager. It is fairly simple if you know PHP and AMI. On Thu, 2008-04-03 at 20:39 -0600, troxlinux wrote: somebody knows some application web that allows me to

Re: [asterisk-users] Click to call

2008-04-03 Thread c . savinovich
You can try the click-to-call from www.videoreps.net... it is asterisk based. The sample provides you with an actual pc-to-pstn call... of course calls to internal extensions are easier. There is click-to-call, and there is click-to-call-with-video CS somebody knows some application web

Re: [asterisk-users] click to call

2007-06-04 Thread Tzafrir Cohen
On Sun, Jun 03, 2007 at 11:29:57PM -0500, Anton Krall wrote: True, maybe I didnt make myself clear on that point, what i meant was, Im not looking for an app that would let people click a sip: URL type to make a call using their already installed softphone but rather allow any user that

Re: [asterisk-users] click to call

2007-06-04 Thread Tim Panton
] click to call -Original Message- From: [EMAIL PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Steve Totaro Sent: Saturday, 2 June 2007 9:41 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call

Re: [asterisk-users] click to call

2007-06-04 Thread Tim Panton
On 4 Jun 2007, at 08:14, Tzafrir Cohen wrote: On Sun, Jun 03, 2007 at 11:29:57PM -0500, Anton Krall wrote: True, maybe I didnt make myself clear on that point, what i meant was, Im not looking for an app that would let people click a sip: URL type to make a call using their already

RE: [asterisk-users] click to call

2007-06-04 Thread Gordon Henderson
On Sun, 3 Jun 2007, Anton Krall wrote: Hi Gordon So, mexuar solution was that java softphone that you talked about? Yes. Any other small softphone type solution around, something on the same lines of what you described, something that the user could download but could be preconfigured or

RE: [asterisk-users] click to call

2007-06-03 Thread Anton Krall
with settings. Regards AK  -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Henderson Sent: Sábado, 02 de Junio de 2007 03:09 a.m. To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call On Fri, 1

RE: [asterisk-users] click to call

2007-06-03 Thread Anton Krall
List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call So far for what I've seen, there is some misconception of the terms.. click to dial can mean if you see a number on a webpage, click on it and your softphone will dial it.. but can also mean click on the image

RE: [asterisk-users] click to call

2007-06-03 Thread Anton Krall
- [EMAIL PROTECTED] On Behalf Of Joseph Bajin Sent: Saturday, 2 June 2007 12:02 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] click to call You shouldn't need a softphone to do Click to Call.. The idea is pretty simple, and maybe I am missing

RE: [asterisk-users] click to call

2007-06-02 Thread Gordon Henderson
, 31 de Mayo de 2007 10:18 a.m. To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] click to call Anton Krall wrote: I have been looking around for examples or code on making a click to call application for web sites... has anybody had any luck on this topic

RE: [asterisk-users] click to call

2007-06-02 Thread Steve Totaro
-Original Message- From: [EMAIL PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Anton Krall Sent: Friday, June 01, 2007 10:53 PM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: RE: [asterisk-users] click to call So Guys, no go on this topic

RE: [asterisk-users] click to call

2007-06-02 Thread Steve Totaro
, June 02, 2007 4:09 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call On Fri, 1 Jun 2007, Anton Krall wrote: So Guys, no go on this topic? I trialled a click-to-dial application recently. It generated a lot of controversy

Re: [asterisk-users] click to call

2007-06-02 Thread Joseph Bajin
PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Gordon Henderson Sent: Saturday, June 02, 2007 4:09 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call On Fri, 1 Jun 2007, Anton Krall wrote: So Guys, no go on this topic? I

RE: [asterisk-users] click to call

2007-06-02 Thread Steve Totaro
-users- [EMAIL PROTECTED] On Behalf Of Joseph Bajin Sent: Saturday, June 02, 2007 12:02 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] click to call You shouldn't need a softphone to do Click to Call.. The idea is pretty simple, and maybe I am

RE: [asterisk-users] click to call

2007-06-02 Thread Dean Collins
] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Joseph Bajin Sent: Saturday, 2 June 2007 12:02 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] click to call You shouldn't need a softphone to do Click to Call.. The idea is pretty simple

Re: [asterisk-users] click to call

2007-06-02 Thread Nick Seraphin
] On Behalf Of Gordon Henderson Sent: Saturday, June 02, 2007 4:09 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call On Fri, 1 Jun 2007, Anton Krall wrote: So Guys, no go on this topic? I trialled a click-to-dial application

RE: [asterisk-users] click to call

2007-06-02 Thread Nick Seraphin
On Sat, 2 Jun 2007, Steve Totaro wrote: That is a totally different concept than we have been discussing. You are talking about actual phones and the person clicking, then entering their phone number having to pick up a physical phone. This is as trivial as generating a .call file and

RE: [asterisk-users] click to call

2007-06-02 Thread Dean Collins
-users- [EMAIL PROTECTED] On Behalf Of Nick Seraphin Sent: Saturday, 2 June 2007 8:00 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call The problem is, the only people who will be able to use that link are geeks that have a headset

RE: [asterisk-users] click to call

2007-06-02 Thread Steve Totaro
To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call Hi Nick, Totally disagree with you. We the prevalence of skype, im and MP3's You'd be surprised how many users have headsets. What you are missing here is the additional functionality you

RE: [asterisk-users] click to call

2007-06-02 Thread Dean Collins
-Original Message- From: [EMAIL PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Steve Totaro Sent: Saturday, 2 June 2007 9:41 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call Then there is risk

RE: [asterisk-users] click to call

2007-06-02 Thread Steve Totaro
-Original Message- From: [EMAIL PROTECTED] [mailto:asterisk-users- [EMAIL PROTECTED] On Behalf Of Dean Collins Sent: Saturday, June 02, 2007 10:04 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [asterisk-users] click to call -Original Message

Re: [asterisk-users] click to call

2007-06-02 Thread Al Bochter
Nick You made a very good point. Best regards, Al Bochter Bochter Services Did you check your US Greenbacks for GOLD Today? http://www.bochterservices.com/?t=USbill_email Nick Seraphin wrote: On Sat, 2 Jun 2007, Steve Totaro wrote: That is a totally different concept than we have

RE: [asterisk-users] click to call

2007-06-02 Thread Nick Seraphin
On Sat, 2 Jun 2007, Dean Collins wrote: Hi Nick, Totally disagree with you. We the prevalence of skype, im and MP3's You'd be surprised how many users have headsets. Well, I'm probably one of the geekiest guys in this geographic area. I've been online since 1986, been on the internet

RE: [asterisk-users] click to call

2007-06-01 Thread Anton Krall
So Guys, no go on this topic? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anton Krall Sent: Jueves, 31 de Mayo de 2007 10:58 a.m. To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: RE: [asterisk-users] click to call The idea

Re: [asterisk-users] click to call

2007-05-31 Thread mail-lists
Anton Krall wrote: I have been looking around for examples or code on making a click to call application for web sites... has anybody had any luck on this topic? Is there any open source code out ther that could do this? What we have done in the past is created url's like this :

RE: [asterisk-users] click to call

2007-05-31 Thread Anton Krall
de Mayo de 2007 10:18 a.m. To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] click to call Anton Krall wrote: I have been looking around for examples or code on making a click to call application for web sites... has anybody had any luck on this topic

Re: [Asterisk-Users] click to call features on asterisk

2006-06-13 Thread Sharon Lim
Firstly, thanks for the information, but I dont seem to get this SNAP work. I found out that the disadvantage of this is most computer dont come with mozilla, therefore for some non-IT literal is quite troublesome for them. Hmm..hopefully someone can provide me some info on click n call features.

RE: [Asterisk-Users] click to call features on asterisk

2006-06-09 Thread Colin Anderson
I have, using Active Server Pages + Flash. See: http://new.landmarkmasterbuilder.com and click on Contact Call Us Online. I can post the .asp and .fla somewhere if someone is interested in it. -Original Message-From: Sharon Lim [mailto:[EMAIL PROTECTED]Sent: Friday, June 09,

Re: [Asterisk-Users] click to call features on asterisk

2006-06-09 Thread Sharon Lim
Hi colin,I am doing on php. But i would glad that you can share the codes as i will explore it. Thanks. On 6/9/06, Colin Anderson [EMAIL PROTECTED] wrote: I have, using Active Server Pages + Flash. See: http://new.landmarkmasterbuilder.com and click on Contact Call Us Online. I can post

Re: [Asterisk-Users] click to call features on asterisk

2006-06-09 Thread mitcheloc
You could check out Snap, there is a Firefox extension for it. You won't have to program webpages or anything as the phone numbers are automatically detected and handled without needing anything extra from the web designer. http://www.snapanumber.com On 6/9/06, Sharon Lim [EMAIL PROTECTED]

RE: [Asterisk-Users] Click to Call

2004-08-10 Thread Ed Guy
, August 10, 2004 1:21 AM (BTo: [EMAIL PROTECTED] (BSubject: RE: [Asterisk-Users] Click to Call (B (B (BHi, Ed Guy, (B (BDo you find interesting issue when getting CDR? (BIt has two billing leg on "click to call". One is origination leg and the (Bother is termination leg. After call

RE: [Asterisk-Users] Click to Call

2004-08-09 Thread Glen Hinkle
Just write a CGI script that places a file in in the outgoing calls directory. /var/spool/asterisk/outgoing, I believe. This will accomplish what you're wanting. -g On Mon, 2004-08-09 at 11:45, Andrew Thompson wrote: Andrei Goncalves wrote: Hello !! I saw in FWD site a phone on the

RE: [Asterisk-Users] Click to Call

2004-08-09 Thread Andrew Thompson
Glen Hinkle wrote: Just write a CGI script that places a file in in the outgoing calls directory. /var/spool/asterisk/outgoing, I believe. This will accomplish what you're wanting. Did you even click the link? I saw in FWD site a phone on the web.. (click 612 link)

RE: [Asterisk-Users] Click to Call

2004-08-09 Thread Steven Critchfield
On Mon, 2004-08-09 at 13:26, Andrew Thompson wrote: Glen Hinkle wrote: Just write a CGI script that places a file in in the outgoing calls directory. /var/spool/asterisk/outgoing, I believe. This will accomplish what you're wanting. Did you even click the link? I saw in FWD site

Re: [Asterisk-Users] Click to Call

2004-08-09 Thread Brian Capouch
Steven Critchfield wrote: . As a seperate option, the CGI solution above kind of gets a similar functionality. No it doesn't use the web browser, but it would allow you to collect a phone number and issue a call out to the person requesting the call. You then could select when and how to connect.

RE: [Asterisk-Users] Click to Call

2004-08-09 Thread Andrew Thompson
Steven Critchfield wrote: On Mon, 2004-08-09 at 13:26, Andrew Thompson wrote: Glen Hinkle wrote: Just write a CGI script that places a file in in the outgoing calls directory. /var/spool/asterisk/outgoing, I believe. This will accomplish what you're wanting. snip As a seperate option,

RE: [Asterisk-Users] Click to Call

2004-08-09 Thread Ed Guy
/var/spool/asterisk/outgoing/ # # end Best Regards, Ed Guy @ pulver.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steven Critchfield Sent: Monday, August 09, 2004 2:44 PM To: [EMAIL PROTECTED] Subject: RE: [Asterisk-Users] Click to Call

RE: [Asterisk-Users] Click to Call

2004-08-09 Thread VoIP
al Message- (BFrom: [EMAIL PROTECTED] (B[mailto:[EMAIL PROTECTED] On Behalf Of Ed Guy (BSent: 2004$BG/(B8$B7n(B10$BF|(B 4:35 (BTo: [EMAIL PROTECTED] (BSubject: RE: [Asterisk-Users] Click to Call (B (BAndrei, (B (BIt is an activeX control and it no longer needs (Bto have the security lev