similar to: How to take over ringing calls

Displaying 20 results from an estimated 5000 matches similar to: "How to take over ringing calls"

2003 Nov 28
1
Problem with SIP-Phones and * audio-files
Hi All, I am a newbie to asterisk, and here is my first problem, where I do not know any further. I have to grandstream BT100 connected to asterisk. Working fine, for calling to each other, and to call via a IAX-Link to the outside. If I try to call the initial demo from the samples.extensions.conf I have nothing to hear. The CLI fine reports: -- Executing
2004 Jul 06
1
zaphfc 2 cards working with P2P Mode ?? - massive Problems
Hello List, is someone operating a DID /P2P / Anlagenanschluss with more than one HFC-Based ISDN-Card ??? I have now 12 hours of setup-troubles behind me with Colt-Telekom, where we did not get it working with two HFC-based cards. Here the setup: - 2 HFC-ISDN-Cards (the one from Conrad-Electronic) - bri-stuff.0.0.2 (with the asterisk-sources from the download.sh-skript) - two NTBAs from
2003 Oct 24
2
problems setting up E100P E1 germany
Hello list, i've got some problems getting a E1 line with a E100P up and running (germany). # cat /proc/zaptel/1 Span 1: WCT1/0 "Digium Wildcard E100P E1/PRA Card 0" HDB3/CCS/CRC4 YELLOW RED "YELLOW RED" sounds not so good. When launching asterisk, enabling pri debug on that span, i see outgoing attempts: ;---------- snip -------- > [00 01 7f ] > Unnumbered
2004 Jul 26
3
Read SPSS data (*.sav) in R 1.8.0 (ok) and R1.9.1(error)
Hallo! I read SPSS data in the following way: library(Hmisc) library(foreign) dat<-spss.get("surv_abb.sav") In R1.9.1 I got the message: "Error in all(arg == choices) : Object "typeDate" not found" In R1.8.0 the same script works fine. Does anybody know a possibilty to read a SPSS file under R1.9.1? Thanks! Karl
2012 Feb 01
6
While loop working with TRUE/FALSE?
Hi R users, is there any possibilty that a while loop is working like that: z <- c(0,1,2,3,4,5,6,7,8,9) r <- 7 while(w == T) { for ( i in 1:10 ){ w <- r == z[i] print(w) } } The loop should stop if w == TRUE best regards -- View this message in context:
2010 Jun 27
2
floating point in single precision
Hello, is there a possibilty in R to convert numbers (double precision, 64bit) into single precision ones (32bit). I need that for compatibility reasons. Until now I call a C application which casts a double to a float. float precision32(double value) { return (float)value; } But I want to use a R only method. What can I do? Kind regards, Sebastian
2002 Jun 20
2
cat output To data.frame.rows ?
Hi, is there a possibilty to get my function output with "cat " as data.frame.rows with variables ? Var1---------------- 8 15 1 3 Var2---------------- 0.170 0.319 0.0213 0.0638 Var3---------------- 83.8 88.6 90 75 Var4---------------- 84.3 84.3 100 83.3 Var5---------------- 62.5 56 20 53.3 function(data.frame) { .... ....
2003 Oct 30
6
Info on UK ISDN30e?
Hi :) My employer is looking to move a call centre to a new office, and has been increasingly frustrated with their legacy PBX (call-logging licensing and hardware upgrade costs). So I've stepped forth as the Open Source Pedant and suggested Asterisk so we can do all our own CallerID / call logging / analyses, and make use of IP Phones / teleworking, etc. The problem begins in that I only
2009 Nov 24
3
1950's UK rotary dial phone
Folks, I've got one of those GPO 1950's rotary dial phones that I'm trying to get working in the UK. I've got pretty much everything working with my TDM400, the phone rings and I can receive calls but I cannot dial with the rotary dialer. I have set pulsedial=true or whatever the exact setting is and I can dial from the phone by lifting the receiver and tapping out the number on
2011 Jul 20
3
Grouping columns
*Hi @ all, I have a question concerning the possibilty of grouping the columns of a matrix. R groups the columns alphabetically. What can I do to group the columns in my specifications? The script is the following:* > #R-Skript: Anzahl xyz > > #Quelldatei einlesen > b<-read.csv2("Z:/int/xyz.csv", header=TRUE) > > #Teilmengen f?r die Einzeljahre generieren >
2009 Jul 15
1
How to limit memory reported to a program?
I'd like to run write.exe (an - I think - old Windows 3.1 application). The problem is: It doesn't run but brings up a message that there isn't enough working memory (out of memory error). Actually, there is too much of it. With Windows itself, I can fix it by adjusting the FileCache entry in the system.ini (see http://support.microsoft.com/?scid=kb;en-us;253912). Unfortunately, this
2007 Dec 17
1
How to change dovecot's bounce message
Hi, I am using the quota plugin of dovecot. Dovecot is running as LDA for postfix. When the system is running into the quota limit, the bounce message reads as follows: > Your message was automatically rejected by Dovecot Mail Delivery Agent. > The following reason was given: > Quota exceeded Can I somehow change this message, to make it more userfriendly? Postfix has a possibilty
2005 Dec 09
1
Advanced Winbind questions
Hello everybody, i'm using Samba 3.0.20 with Winbind to check logins against an ActiveDirectoryServer. At the first login pam_mkhomedir creates a Folder containing the Homedirectory. I've some Problems with this installation. 1. Windows does not differentiate between Capitals and lower case letters. The Problem is that users can login with different spelling of their Username. And on
2002 Mar 26
1
process & tracking
Hi, exist a possibilty to work with more than one process like this,or in another way is it possible to start more than one time R (Win2000) and let run the process at one task and work interactive normal with the other.......(but this is perhaps dangeorous , cause of same .RData file) ? while(1) { queryTrack() Sys.sleep(12)} thanks & regards, Christian
2003 May 11
1
simulating data
..for a "unit test" i need a lot of rows in my database, so i simulate. My problem, using Win2k,R.1.7.0, 256RAM is that i'm getting memory-erros go about the 1000.000 border , but i need bigger test data. Ok is approriate buy more RAM, but is there a possibilty simulate a lot of single rows, one after another and between this 2 steps -> Add th row to database and delete them
2005 Aug 22
1
vectors of different length in a matrix
HI! I?ve 3 vectors of different length (a,b,c) and want to arrange them in a matrix a,b,c as rows and the figures of these vectors in the columns (with that matrix i want to calculate a distance between thes vectors - vegan - vegdist - horn). Is there a possibilty to create such a matrix and to fill up the missing fields with NA?s automatically???? Thanx marten winter -- *Marten Winter*
2007 Nov 27
1
routing
Hi all, My site uses subdomains to define an item. Eg http://itemname.mysite.com I fetch the itemname and render the appropriate site from that itemname. The subdomain is used everywhere (eg http://itemname.mysite.com/events, http://itemname.mysite.com/products/show/11, ...) I now want to give the user the possibilty to use a ''real'' domain like www.itemname.com that should
2011 Oct 27
1
plotting large time series
hello, I got a problem with plotting large time series, since I want to store the results in a .PDF file (I want to store several pages of plots). The PDF files get too large to be handled (> 10MB, one was even 200MB big). So I wonder, if there would be a possibilty to either - reduce the file size of the PDF - change the way the plot is generated to reduce the plot size? I use:
2003 Nov 14
4
LOCF - Last Observation Carried Forward
Hi! Is there a possibilty in R to carry out LOCF (Last Observation Carried Forward) analysis or to create a new data frame (array, matrix) with LOCF? Or some helpful functions, packages? Karl --------------------------------- Gesendet von http://mail.yahoo.de Schneller als Mail - der neue Yahoo! Messenger. [[alternative HTML version deleted]]
2013 Aug 07
1
Puppetdb install from sources
Hi everyone I''m currently trying to install Puppetdb on my puppet master server (on Suse 11 SP2 64bits) using the Source method<http://docs.puppetlabs.com/puppetdb/1.3/install_from_source.html>and I can''t figure out why it is not working. It''s seems to be stuck at the begining of the rake install I have Facter in version 2.0.0 # facter -v 2.0.0 I installed