similar to: Voicemail Configuration

Displaying 20 results from an estimated 10000 matches similar to: "Voicemail Configuration"

2002 Sep 20
0
ACLs and DACLs not propagated to owner of file/directory
Hello, I've submitted the following to the bug tracking system, but thought I might find some other answers here. It appears that there is a bug in the ACL code that prevents a ACL or DACL from being applied to directory if the user associated with that ACL is the owner of the file. Consider the following directory structure top->| |->a| |->1 | |->2 |
2003 Dec 01
0
No subject
actually touches the ACLs for newly created files and directories. smbd only seems to manipulate ACLs when they're changed from a windows client. 3. The "inherit acls" config option does not fix this problem, which is not surprising since that's not what the option is intended to do. ------_=_NextPart_001_01C260B4.8812FA00 Content-Type: text/html;
2008 Oct 17
0
GET DATA Returning only a single digit
-- jand. more than just a group Asterisk AGI Command GET DATA is usually of this form GET DATA timeout max_digits When I execute this command, I get only a single digit, regardless of what the value of max_digits is, Also the script quits Immediately after the press of the digit regardless of what the value of timeout is, This is really un-desirable as I will like to GET multiple DTMF digits
2013 Jun 21
2
help creating custom genericups configuration - RNG only!
Hello, I am trying to understand how to create a custom configuration for the genericups driver. My system simply signals RI on a serial port on low battery. That's it, nothing else. This serial port is also being used for communications so the other lines are going to be changing all the time, unrelated to the UPS state. Is there a "null" upstype I can use, and then add LB=RNG?
2009 Dec 28
2
Registering with a static peer?
I've been using a couple of Polycom 501 phones in my home Asterisk setup. I set up each phone in sip.conf to be static, i.e. host=<phone ip address> so that registration wasn't required. This has worked fine for me for a couple of years. Now I just bought a Polycom 335. Since the 501's are now obsolete, I had to go through the steps required in order to have separate
2007 Jun 08
0
Software At Low Pr1ce
Nu Mcafee titles released on Jun 06 20:29:48 MSK 2007 Adobe Creative Suite CS3 269$ Adobe Photoshop CS3 89$ Symantec Norton 360 29$ Microsoft Office 2007 79$ Microsoft Vista Business 79$ Nero 7 Premium 39$ Adobe Acrobat 8 Pro 79$ Adobe Flash CS3 Pro 59$ Windows XP Pro +SP2 49$ Adobe Premiere 2.O 59$ Macromedia Studio 8 99$ 0ffice2OO3 w/Contact Mgr 69$ Quickbooks
2007 Jun 08
0
Software At Low Pr1ce
Nu Mcafee titles released on Jun 06 20:29:48 MSK 2007 Adobe Creative Suite CS3 269$ Adobe Photoshop CS3 89$ Symantec Norton 360 29$ Microsoft Office 2007 79$ Microsoft Vista Business 79$ Nero 7 Premium 39$ Adobe Acrobat 8 Pro 79$ Adobe Flash CS3 Pro 59$ Windows XP Pro +SP2 49$ Adobe Premiere 2.O 59$ Macromedia Studio 8 99$ 0ffice2OO3 w/Contact Mgr 69$ Quickbooks
2004 Jun 08
1
pgsql configuration
from the pgsql configuration file: # Query to retrieve the password. # # The query should return one row, one column. If more than one row or column # is returned, authentication will automatically fail. # # Available substitutions: # %u = entire userid # %n = user part of user at domain # %d = domain part of user at domain # # Query to retrieve the user information. # # The query must
2007 Feb 26
1
Add-up duplicates and merge
Hello, a have two matrices of data as below. I would like to add-up the duplicate in terms of pair of names in rows, and then merge the values in the second matrix to the pairs as two new variables x3 and x4. Input ,x1,x2 jane.mike,31,43 jane.steve,32,2 jane.steve,5,3 jim.mike,76,5 jane.steve,4,4 mike.steve,54,7 mike.steve,5,7 jane.mike,7,8 and ,y jane,0.3 jim,0.4 mike,0.1 carl,0.5 john,0.9
2007 May 03
7
How to create a drop-down list with Markaby?
Hi I couldn''t figure out, how to create a drop-down list with Markaby. How would I create something like this: <select name="character"> <option value="marvin">Marvin the paranoid Android</option> <option value="arthur">Arthur Dent</option> <option value="zaphod">Zaphod
2023 Apr 03
1
Simple Stacking of Two Columns
Hi, You were on the right track using stack(), but you just pass the entire data frame as a single object, not the separate columns: > stack(NamesWide) ? values ? ind 1 ? ?Tom Name1 2 ? Dick Name1 3 ?Larry Name2 4 ?Curly Name2 Note that stack also returns the index (second column of 'ind' values), which tells you which column in the source data frame the stacked values originated
2023 Apr 04
1
Simple Stacking of Two Columns
Just to repeat: you have NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly")) and you want NamesLong<-data.frame(Names=c("Tom","Dick","Larry","Curly")) There must be something I am missing, because NamesLong <- data.frame(Names = c(NamesWide$Name1, NamesWide$Name2)) appears to
2011 May 04
2
split character vector by multiple keywords simultaneously
Hi. I have a character vector that looks like this: > temp <- c("Company name: The first company General Manager: John Doe I > Managers: John Doe II, John Doe III","Company name: The second company > General Manager: Jane Doe I","Company name: The third company Managers: > Jane Doe II, Jane Doe III") > temp [1] "Company name: The first company
2008 Jun 18
4
help with manipulating data frames (survey analysis)
Dear all, Can anyone recommend a good book or an online tutorial for using data frames in R? I want to do statistical analysis on some survey data and I can specify what I would like to do very easily in algorithmic terms. However, being a n00b to R I am struggling with getting R to execute what I want. I think all I need is some source that directs me in the right direction by walking me
2023 Apr 03
4
Simple Stacking of Two Columns
Hi R-Helpers, Sorry to bother you, but I have a simple task that I can't figure out how to do. For example, I have some names in two columns NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly")) and I simply want to get a single column
2019 Dec 09
4
No ssl capability
Hello all, I’ve a problem to set up ssl on icecast server. I’ve tried 2/3 certificates and i compiled a new icecast server file with ssl but i still get the error:ssl, no ssl capability in error log icecast. I cant find the solution. I use centos 7 with centova cast panel Who can help me? Thanx in advance Marv
2023 Apr 04
1
Simple Stacking of Two Columns
I may be missing something but using the plain old c() combine function seems to work fine: df <- data.frame(left = 1:5, right = 6:10) df.combined <- data.frame(comb = c(df$left, df$right)) df left right 1 1 6 2 2 7 3 3 8 4 4 9 5 5 10 df.combined comb 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 -----Original
2006 Dec 03
11
Is there any Asterisk controllable thermostat?
I am wondering if there is any such thermostat available which can be controlled from Asterisk. Like you call your home pbx, dial some extension, e.g. 333 and it asks to set the temperature, you enter a temperature, and it sets the thermostat to that temperature. This thermostat will be very useful, e.g. when you're coming back home after a few days and now its snowing and you want home to be
2008 Jun 03
1
splitting data frame based on a criteria
Hi, I have a data frame that I want to split into two based on the values of a variable in it. The variable Y has numeric values ranging between 0 through 70. I want to plot the frequencies of another variable X in two different cases: - When Y = 0 and - When Y > 0 How does one go about doing this? In general, I want to do several analyses with this data frame that are a variation of the
2002 Jun 09
2
Win98 not doing name resolution.
I recently reinstalled Linux on my fileserver (RedHat 7.2), which was running Samba (v 2.2.1a). Now, trying to reconfigure Samba back to its original state (silly me didn't keep a copy of the conf file) I've run into a problem. My win98 machines can't find the Samba server by name, but they can by number. By this I mean: On a Linux desktop, smbclient -L //marvin/ works as