Hi All Has anyone used Asterisk for a Call Center operation? What I mean is: given a list of phone numbers, can Asterisk dial each number, play a message and accept some DTMF? I ask because I am an employee of a non-profit company based in San Diego, CA. I already evaluated Voicent and Voxeo. The former has expensive licensing terms and the latter is not best suited for a call center. I would appreciate your kind comments. Thanking you murthy
what about astercc? Regards On 1 Aug 2015 18:57, "Murthy Gandikota" <murthy64 at hotmail.com> wrote:> Hi All > > Has anyone used Asterisk for a Call Center operation? What I mean is: > given a list of phone numbers, can Asterisk dial each number, play a > message and accept some DTMF? I ask because I am an employee of a > non-profit company based in San Diego, CA. I already evaluated Voicent and > Voxeo. The former has expensive licensing terms and the latter is not best > suited for a call center. I would appreciate your kind comments. > > Thanking you > murthy > -- > _____________________________________________________________________ > -- 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 >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20150801/8b6b3751/attachment.html>
On Saturday 01 Aug 2015, Murthy Gandikota wrote:> Hi All > > Has anyone used Asterisk for a Call Center operation? What I mean is: given > a list of phone numbers, can Asterisk dial each number, play a message and > accept some DTMF?Yes it can, very easily. But before you go too far, you need to know there are laws against exactly that sort of thing. You need a human being on the end of the phone. -- AJS Note: Originating address only accepts e-mail from list! If replying off- list, change address to asterisk1list at earthshod dot co dot uk .
> From: asterisk_list at earthshod.co.uk > To: asterisk-users at lists.digium.com > Date: Mon, 3 Aug 2015 08:42:50 +0100 > Subject: Re: [asterisk-users] Call Center > > On Saturday 01 Aug 2015, Murthy Gandikota wrote: > > Hi All > > > > Has anyone used Asterisk for a Call Center operation? What I mean is: given > > a list of phone numbers, can Asterisk dial each number, play a message and > > accept some DTMF? > > Yes it can, very easily. But before you go too far, you need to know there > are laws against exactly that sort of thing. You need a human being on the > end of the phone.We make only solicited calls. That means, the people we are going to call have signed up with our service.As for technical details, I can think of a while loop in .ael to dial out. If you can please point me to a URL, I'd be grateful. Best regardsmurthy -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20150803/f9d5a148/attachment.html>
On Sat, 1 Aug 2015, Murthy Gandikota wrote:> Has anyone used Asterisk for a Call Center operation? What I mean is: > given a list of phone numbers, can Asterisk dial each number, play a > message and accept some DTMF? I ask because I am an employee of a > non-profit company based in San Diego, CA. I already evaluated Voicent > and Voxeo. The former has expensive licensing terms and the latter is > not best suited for a call center. I would appreciate your kind > comments.On Mon, 3 Aug 2015, Murthy Gandikota wrote:> We make only solicited calls. That means, the people we are going to > call have signed up with our service. As for technical details, I can > think of a while loop in .ael to dial out. If you can please point me to > a URL, I'd be grateful.When I hear 'call center' I think of agents and queues. What you describe sounds more 'automated' -- no humans involved. I don't think looping in a dialplan is the right approach, since this process (originating calls) is not executing in the context of a channel. I think an external 'scheduler' either creating call files or issuing originate requests via AMI is the way to go. Something like: // read the list of numbers from a text file or database // for each number... // write a 'call file' in /tmp/ // move the call file to the outgoing spool directory // sleep a bit so you don't overwhelm Asterisk or your SIP provider // lather, rinse, repeat The call file asks Asterisk to dial the number. Once the call is answered, the call continues at the context, extension, and priority specified in the call file. The dialplan plays the file, asks the questions, and writes the responses to the database. You can pass variables (donor name, last year's donation) in the call file that you can access as channel variables. Based on the 'project' description, that's how I would approach it. For specifics, feel free to break out your check book and contact me off-list :) -- Thanks in advance, ------------------------------------------------------------------------- Steve Edwards sedwards at sedwards.com Voice: +1-760-468-3867 PST
I've done something like this, and it was done by an external perl script. Asterisk played its part through call files to initiate calls and putting them into the right point in the dial plan, playing sounds and accept user iteraction (through dial plan extensions or AGI). Totally doable and I wouldn't call it a call center either. Except if at some point you want the called party to be able to talk to a human being, in which case you'd probably want to put them into a queue and do proper call center functions. regards Adam On 2015-08-03 16:59, Steve Edwards wrote:> On Sat, 1 Aug 2015, Murthy Gandikota wrote: > >> Has anyone used Asterisk for a Call Center operation? What I mean is: >> given a list of phone numbers, can Asterisk dial each number, play a >> message and accept some DTMF? I ask because I am an employee of a >> non-profit company based in San Diego, CA. I already evaluated Voicent >> and Voxeo. The former has expensive licensing terms and the latter is >> not best suited for a call center. I would appreciate your kind >> comments. > > On Mon, 3 Aug 2015, Murthy Gandikota wrote: > >> We make only solicited calls. That means, the people we are going to >> call have signed up with our service. As for technical details, I can >> think of a while loop in .ael to dial out. If you can please point me >> to a URL, I'd be grateful. > > When I hear 'call center' I think of agents and queues. > > What you describe sounds more 'automated' -- no humans involved. > > I don't think looping in a dialplan is the right approach, since this > process (originating calls) is not executing in the context of a > channel. > > I think an external 'scheduler' either creating call files or issuing > originate requests via AMI is the way to go. > > Something like: > > // read the list of numbers from a text file or database > > // for each number... > > // write a 'call file' in /tmp/ > > // move the call file to the outgoing spool directory > > // sleep a bit so you don't overwhelm Asterisk or your SIP provider > > // lather, rinse, repeat > > The call file asks Asterisk to dial the number. Once the call is > answered, the call continues at the context, extension, and priority > specified in the call file. > > The dialplan plays the file, asks the questions, and writes the > responses to the database. You can pass variables (donor name, last > year's donation) in the call file that you can access as channel > variables. > > Based on the 'project' description, that's how I would approach it. > For specifics, feel free to break out your check book and contact me > off-list :) > > -- > Thanks in advance, > ------------------------------------------------------------------------- > Steve Edwards sedwards at sedwards.com Voice: +1-760-468-3867 > PST