search for: outboundmsg

Displaying 6 results from an estimated 6 matches for "outboundmsg".

Did you mean: outboundmsgs
2005 Jan 24
4
Auto callout - reminder - is it possible?
I'm trying to get a script working on a website to send out automatic email reminders to customers reminding them monthly to change furnace filters. I haven't got one running successfully, yet. That made me think - could it be done with a phone call using Asterisk? A monthly automated phone call to remind people to change their furnace filter? I have no ability to figure this out
2007 Jul 11
2
Pass Dialed number to a script
..."dial X to have a customer service representative call you" Looking for a simple way to pass the number that I dialed to a script in extensions.conf... something like this: [serviceinterruption] exten => s,1,Set(TIMEOUT(response)=10) exten => s,2,Answer exten => s,3,Playback(outboundmsgs/serviceinterrupt) exten => s,4,Playback(outboundmsgs/choice) exten => s,5,wait(3) exten => 1,1,Goto(s,3) ; replay message exten => 2,1,Goto(msgack,s,1) ; acknowledge message exten => 3,1,Goto(callback,s,1) exten => t,1,Playback(vm-goodbye) exten => t,2,Hangup [...
2007 Jan 24
3
setting up AMD
...md.conf: [amd] initial_silence = 3500 greeting = 1500 after_greeting_silence = 300 total_analysis_time = 5000 min_word_length = 120 between_words_silence = 50 maximum_number_of_words = 5 silence_threshold = 256 In extensions.conf [outboundmsg1] exten => s,1,NoCDR exten => s,n,AMD exten => s,n,GotoIf($[${AMDSTATUS}=AMD_PERSON]?humn:mach) exten => s,n(mach),WaitForSilence(2500) exten => s,n,Playback(outboundmsgs/msg1) exten => s,n,Hangup exten => s,n(humn),WaitForSilence(500) exten => s,n,Playback(outboundmsgs/msg1...
2004 Dec 17
6
Realtime and PostgreSQL
Has anyone had any luck with PostgreSQL and Realtime? The realtime instructions on voip-info seem pretty straight forward... just not woking for me. I've included all of my config files below, and my console output. Entire console bootup output: [root@abox asterisk]# /usr/sbin/asterisk -vvvvvvc == Parsing '/etc/asterisk/asterisk.conf': Found == Parsing
2005 Mar 14
0
dial script, send variable problem??
...plan? how is it possibe to send a variable via a callscript to an extention? thanks, alexander ------------- ...... python code ... sound="feature-not-avail-line" s.send('Action: Originate\r\n') s.send('Channel: IAX2/guest@snmdir.ath.cx/501\r\n') s.send('Context: outboundmsg\r\n') s.send('Extention: s\r\n') s.send('Priority: 1\r\n\r\n') s.send('RetryTime: 300\r\n') s.send('WaitTime: 45\r\n') #s.send(('Variable: snd=%s\r\n') % (sound)) s.send(('SetVar: snd=%s\r\n') % (sound)) // extentions.conf ; callgen test [outboun...
2006 May 18
2
Auto Dial Out Madness
...hat will create the .call file and mv it into the outgoing directory. That is all working currently. Here is a sample of what my .call file looks like and what my extensions.conf looks like. .call Channel: Zap/3/1234567890 Callerid: 1234567890 MaxRetries: 200 RetryTime: 30 WaitTime: 45 Context: outboundmsg1 Extension: s Priority: 1 extensions.conf ----- snip --------- [outboundmsg1] exten => s,1,AbsoluteTimeout,40 exten => s,2,DigitTimeout,5 exten => s,3,ResponseTimeout,10 exten => s,4,Answer exten => s,5,Wait(1) exten => s,6,Playback(outboundmsgs...