similar to: UK SMS troubles

Displaying 20 results from an estimated 900 matches similar to: "UK SMS troubles"

2003 Jul 12
2
VIP 30 phone
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I'm just learning about VoIP and Asterisk. I've got a developers kit on its way and I've managed to get hold of a couple of cheap Cisco VIP 30 phones. I've trawled the web and found a few snippets of information on these phones but I still can't get them to work. Does anyone have any config files or any idea on how (if I can)
2003 Jul 19
2
Analog phone not ringing
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I've got my developers kit from telappliant and got a machine up and running to become the house phone system. Most things are working now, such as incoming calls, call transfer, call parking, voicemail, etc. The one thing I can't do is make my analog phone ring! I can see the call coming in on the asterisk console and can then pick
2004 Apr 17
1
Different UK Caller ID question!
Here's a bit of a twist to the common UK Caller ID question... (Which I've got working nicely thanks to some slight changes in Jonathan McHarg's scripts off the asterisk-dev mailing list, and a Pace modem from ebay!) Can a standard BT phone that supports CID (Such as a BT Decor 310) pick up the CID information that asterisk passes out to analog lines or would I have to get an
2004 Apr 22
0
Modems compatible with NTL caller id
I'm looking at using a modem to provide caller ID info on my NTL line following the steps in the article posted by Darren Poulson: http://www.22balmoralroad.net/modules.php?name=Sections&op=viewarticle&artid=1 I was wondering if anybody had experience of using any modems (can be pci/isa/external) with an ntl line (in an ex. Cable & Wireless area if it makes a difference) and
2004 Jul 21
5
Compiling Samba 3.0.4, err w/ krb5
Hello again, I'm not attempting an install of Samba 3.0.4 from source. I want to specifically compile in ads and winbindd support. So, I already compiled and installed OpenLDAP 2.2.13. Now the configure script is hung on krb5 dependancy: checking for krb5.h... no configure: error: Active Directory cannot be supported without krb5.h So I downloaded and attempted compile of krb5 1.3.4, but
2009 Apr 12
0
Daz Studio 2.3.x on Jaunty/Wine - partially works, need help
I have Wine 1.0.1 as distributed with Ubuntu Jaunty Jackalope (beta). I have an ATI Radeon Mobility X300 card on a Dell Latitude D610. I am trying to run Daz Studio, a free 3d graphics program (similar in functionality to Poser) available for download at http://daz3d.com . This software was running on this hardware under Windows XP SP2 and SP3 before I got tired of dealing with malware and
2004 Jul 20
0
Help using Samba in ADS environment
Hello all, Forgive me as this is probably a common question. However, I could not find an answer while searching. I have a few Linux servers running Samba 2.2.x that are hosting open shares with guest read/write access. I would like to have these become a member of the active directory and allow pass-thru authentication and authorizations to the shares hosted. I find where I can join the
2007 Feb 08
1
Queue extension issues
I'm stuck on queues! The way I read what documentation I have found, if I set up a queue like this: [general] persistentmembers = yes [testq] musiconhold=default strategy = ringall timeout = 10 retry = 5 context = testing member => SIP/100 and then add into extensions something like this: [incomingiax] exten => 1234,1,Dial(SIP/100,10) exten => 1234,2,Queue(testq|tTH|||300)
2005 Mar 27
3
Can't get format_mp3 to work for music on hold
Hi Guys, I am having trouble trying to get format_mp3 working to play music on hold. I have followed the instructions in the read-me and the wiki however it seems after un-installing mpg123, asterisk is not even attempting to play MOH. My musiconhold.conf is ; Music on hold class definitions ; [classes] [moh_files] default = >/var/lib/asterisk/moh-native ;default =>
2005 Feb 07
2
callback agents cannot transfer calls
Hi, my situation is: incoming call goes into the queue and is picked up by callback agent. The agent then wants to transfer the call to another device (another SIP phone). But 'transfer' button doesn't work and '#' button attempts to start channel monitor. Tried with both Queue(testq) and Queue(testq,tT). Is it meant as a feature that agents won't transfer calls at
2006 Aug 11
2
AgentcallbackLogin()
Can someone tell me why this is not valid... [start] exten => 1000,1,Answer exten => 1000,2,Wait,1 exten => 1000,3,AgentcallbackLogin(1000||2000@Local) exten => 2000,1,Macro(DialProxy,115551212) exten => 3000,1,Queue(testq||||45) while this is: [start] exten => 1000,1,Answer exten => 1000,2,Wait,1 exten => 1000,3,AgentcallbackLogin(1000||2000@start) exten =>
2019 Sep 16
3
Handling of FP denormal values
Hi all, While reviewing a recent clang documentation change, I became aware of an issue with the way that clang is handling FP denormals. There is currently some support for variations in the way denormals are handled, but it isn't consistent across architectures and generally feels kind of half-baked. I'd like to discuss possible solutions to this problem. First, there is a clang
2006 Sep 21
2
Probe description does not match any probes
[Perhaps someone could rename this list to dtrace-matt-problems-discuss?] If I run this script against my binary (which contains a USDT probe called ''concurrentq-latency''): ::: / probename == "concurrentq-latency" / { printf("[%s]:[%s]:[%s]\n", probeprov, probefunc, probename); } I get this output: dtrace: script ''testq.d'' matched 46056
2003 Aug 05
1
So now I'm playing around with Queues....
and I found a reference to an AgentLogin.rtf. Looks great, except I can't get it to work. queues.conf: [sjs-testq] music = default timeout = 1 retry = 1 maxlen = 0 member => Agent/10001 agents.conf: agent => 10001,1234,Steve Sobol extensions.conf: (I have a phone line set up on which the main menu tells you to press 1 to be added to queue. Pressing 1 lands you here) exten =>
2015 Jan 23
2
[LLVMdev] X86TarIgetLowering::LowerToBT
> icc generates testq for 0-30 and btq for 31-63. > That seems like a small bug in the bit 31 case. You can’t use testq for bit 31, because the immediate gets sign-extended. You *can* use the 32b form, of course.
2011 Dec 22
1
[LLVMdev] tail call optimization question
Hello, Is tail call optimization performed if the ret instruction does not actually follow the tail call? Not according to the documentation, but in examples it seems to work. For example, consider the following definition of Ackerman's function in ML (it has two tail calls): let rec ack x y = if x <= 0 then y + 1 else if y <= 0 then ack (x - 1) 1 else ack (x - 1) (ack x (y -
2010 Jan 09
2
Cant get Winebottler working... getting very frustrated!
Hi okay. I am running OSX 10.6.2 (Snow Leopard). I have X11 2.3.4 I have installed the latest WinebottlerCombo 1.1.35 (includes Wine) I have a pc file with .exe on the end it will put software into my mac version of DAZ Studio. I had this working when I had 10.5.8 installed, but then I had to go and mess things up. When I open my exe file the window opens up: You are about to install a Wine
2014 Jan 28
2
[LLVMdev] ldmxcsr reordering issue
Hi, I met troubles with jitting x86 codes when using Intrinsic::x86_sse_ldmxcsr. The target code must execute some SSE2 instruction with DAZ/FTZ modes enabled and others with DAZ/FTZ disabled. I'm trying to get this by emitting LDMXCSR instructions with proper flag words. It appeared however that execution engine sometimes reorders these instructions with computational ones (say with
2004 Dec 16
2
Queueueueuueue position
Hello, I've got the following queue.conf: [testQ] music=jr_80 ;Bore the caller with some 80's music announce=queue-testQ ;Announcement to play to the Agent answering strategy=ringall ;Let all hell break lose timeout=60 ;We should answer within 60s retry=5 ; announce-frequenty=15 ;Tell them where the are every 15 seconds announce-holdtime=yes ; Give them
2003 Sep 11
10
phpconfig is out in CVS
I have put my phpconfig stuff out into the Digium CVS tree. Project name is phpconfig. see it at http://rads.netcom.utah.edu/phpconfig/phpconfig.php Lemme know if you have any patches or add on's are welcome Dave Packham aka p0lar