similar to: -- Serious issues with current CVS?

Displaying 20 results from an estimated 300 matches similar to: "-- Serious issues with current CVS?"

2005 Sep 22
1
SayUnixTime in CVS?
Can anyone tell me what I missed? I'm trying to setup a simple extension (400) that reports the time when it is dialed. I searched the threads and it seems like this should work... Here's what's in my extensions.conf: exten => 400,1,Answer() exten => 400,n,Wait,1 exten => 400,n,SayUnixTime(,EST5EDT,) exten => 400,n,Playback(tt-weasels) [BTW, tt-weasels is hillarious!
2012 Aug 14
0
SayUnixTime quandry
Hi Gang, Hopefully somebody out there has a "doh" for this one. My dialplan announces the date and time using SayUnixTime. When I run this: exten => 36225,1,Set(ABA=999999999) exten => 36225,n,Background(telbank/${ABA}/${CHANNEL(language)}/thetimeis) exten => 36225,n,sayunixtime(,,Abe 'digits/at' IMP) I get this CLI output -- Executing
2004 Dec 17
0
SayUnixTime
If I use SayUnixTime to an extension, it will tell me the CORRECT time: extension =>698,1,SayUnixTime If I use the same in the wakeup-agi, it tells me the time 14 hours in the future: $agi->exec('SayUnixTime', sprintf("%s||IMp", UnixDate($time, "%s"))); Where is the difference? I am in Time zone Asia/Taipei (GMT+8:00) Any ideas? bye Ronald
2004 Jun 12
1
'background' problem
I have a 'day' and a 'night' mode. In the day mode, I play a 'background' message which is interruptable by the pushing of a DTMF key - ie - all is normal. In night mode - I decided to get smarter... I play two backgrounds with a 'sayunixtime' in between and now DTMF does nothing - the menu times out to my 'lets get the operator then'... If I change the
2004 Mar 31
1
Voicemail prompts garbled
I'm having problems with the voicemail prompts. The beginning of each prompt is garbled. Prompts "edian mail" and "assword" can be recognized, but when it starts on the short phrases it is completely garbled. It is almost like the subsequent phrase starts before the current phrase finishes. I have isolated the LAN to the * box and the phones, so LAN congestion is
2005 Jul 11
2
h323 and asterisk
We come into this section of the dialplan: exten => 88670333333,1,Wait(1) exten => 88670333333,n,SayUnixTime exten => 88670333333,n,NoOp(If you know the extension ...) exten => 88670333333,n,Dial(${PHONE_6003}) The caller from the GK hears only ringing, not the time. The extension 6003 rings and I can pick up, but without any voice nor video. athome*CLI> -- Executing
2015 Jun 14
4
German sounds on Asterisk
Hi again I'd like to configured my Asterisk to use german sounds for the "Say"-commands... I installed the sounds-files and I tried them with "Playback(de/demo-echodone)" and it works. Now I tried to add an extension to say the current time: exten => 24,1,Verbose(2,Time asked by ${CALLERID(num)}) Exten => 24,n,Set(CHANNEL(language)=de) Exten =>
2004 Jun 30
0
Compile error with CVS HEAD zaptel
I get a compile warning when building zaptel (current CVS head) against 2.4.18 kernel (Debian stable dist) zaptel.c: In function `zt_net_close': zaptel.c:1238: warning: implicit declaration of function `hdlc_close' It completes but fails to install with modprobe finding unresolved references. This error was introduced with the introduction of the second clause of the statement below in
2004 Aug 12
2
Interruptable SayUnixTime
I'd like to announce the time when people call and hit my voice-menu context, but the complaint is that the time announcement isn't interruptable. Is there any way to make SayUnixTime interruptable? -- PhoneBoy
2005 May 25
0
May Twenty Fifth SayUnixTime
I'm trying to get SayUnixTime to parse the date correctly and say 'May Twenty Fifth', however it refuses to do so and keeps using the phrase 'May Twenty Five'. I've read all the syntax, tried using both 'd' and 'e', and in the doc it says: d or enumeric day of monthfirst, second, ..., thirty-first However, it doesn't read my h-#.gsm files...
2005 Jul 28
0
H323 problem
Can anybody spot the problem? H.323 via GK calls Asterisk box and should be connected directly to the extension 6002 (an voice sip phone) The caller hears only ringing. The called party hears the ring. Called party picks up, caller hears still the ring tone. Called party hears nothing. Called party hangs up, caller hears the busy tone. extensions.conf: exten => 88670333333,1,Wait(1) exten
2006 Jan 25
0
include from database
Hi list users I?m trying to do an incluye statement from the Database In my dialplan I have different contexts that defines common services for example ---------------------------------------------------------------------------- ----------------------- [basic_services] exten => 100,1,VoicemailMain() exten => 600,1,Playback(demo-echotest) exten => 600,2,Echo() exten
2007 Nov 29
1
Adding new recorded phrases to the release
This might be a frequently asked question, but how do new sounds get added to the release? I was trying to do a "popcorn" extension on my phone (that gives the date and time... maybe even getting fancy and adjusting for the caller's timezone based on country code or area code)... but didn't have the word "local" or phrase "local time" in the lexicon. Now if
2010 Jan 11
0
Custom date formats with new mode say.conf?
I have Asterisk 1.6.2 running on CentOS 5.4. I would like to use mode=new in say.conf but when I do, SayUnixTime doesn't play any sounds. i.e., SayUnixTime(,CST,ABd 'digits/at' IMp) says the date / time as expected with mode=old, but changing to mode=new causes that to do nothing at all. Is there something else I need to change to make date formats other than the default work
2015 Jun 14
0
German sounds on Asterisk
Hi, from voipinfo... If an Asterisk command specifies a sound file in a*subdirectory*, Asterisk looks in that subdirectory for the language subdirectory. For example, theSayDigits <http://www.voip-info.org/wiki/view/Asterisk+cmd+SayDigits>command may play the sound file "digits/6". Asterisk will, if the language code is "de", first look for
2007 Dec 05
2
New feature: calling all bug marshals
> Hi. > > I wanted to write a "popcorn" app for myself, both to learn how to > script in extensions.conf, but also because it was something handy. > > Along the way, I found myself doing something like: > > [popcorn] > exten => s,1,Set(FUTURETIME=$[${EPOCH} + 10]) > ... > exten => s,n,While(${EPOCH} < ${FUTURETIME}) > exten =>
2007 Dec 05
5
New feature: calling all bug marshals
Hi. I wanted to write a "popcorn" app for myself, both to learn how to script in extensions.conf, but also because it was something handy. Along the way, I found myself doing something like: [popcorn] exten => s,1,Set(FUTURETIME=$[${EPOCH} + 10]) ... exten => s,n,While(${EPOCH} < ${FUTURETIME}) exten => s,n,Wait(0.01) exten => s,n,EndWhile() exten => s,n,Play(beep)
2008 Nov 27
2
Wellgate & Asterisk
I got a Wellgate 3804A and need some hints: Both have public IP *.131=asterisk (1.6.0.1) *.133= Wellgate Wellgate 3804A settings (Line1~Line4): 1. Sip Config Mode: Proxy Primary Proxy IP Address: *.131 Primary Proxy port: 5060 Line1 Number: 1002 2. Security Config Line1 Account: 1002 Line1 Password: ****** 3. Line Configuration Line1: Type=FXO, Hunting Group=2, Hot Line =
2004 Dec 12
1
Totally LOST with dialplan and Extensions.
Ok I have spent the last week working on getting my small PBX to work. I will in the end only have 4 SIP extensions being either softphones of IP phones. Currently only 1 SIP config for testing. And at the this point it should be all fairly easy with all inbound and outbound to PSTN will be going Via Firefly/Freshtel.net in Australia via IAX. Inbound does work in it's current basic state.
2004 Jun 20
7
Date Time Stamp with Caller ID
Where does the date/time stamp from Caller ID come from? On my extensions ATA188 and IAX2 soft phone the caller id date / time is 12/30 12:00AM. The Linux time is correct. SayUnixTime return the correct time. Any Ideas? Does this work? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: