similar to: Help Samba. More then 1 virtual samba servers.

Displaying 20 results from an estimated 1300 matches similar to: "Help Samba. More then 1 virtual samba servers."

2008 Mar 28
2
How to force working of a redirect features in sieve plugin?
Hello Trying to setup dovecot installation with sieve plugin, can't configure how to make redirect working. My setup 1 Exim + dovecot lda begin transports dovecot_virtual_delivery: driver = pipe command = /usr/local/dovecot/libexec/dovecot/deliver -d $local_part message_prefix = message_suffix = delivery_date_add envelope_to_add return_path_add log_output user = exim 2
2007 Mar 02
1
Some question about "auth default", "auth default_with_listener" and others
Hello, Trying to set in dovecot.conf more than one auth section found that imap and pop3 auth process use bose of them. Loooks like thay do in round-robin way or maybe another way. Example of config: auth default { mechanisms = plain passdb sql { args =
2006 Apr 12
2
unit testing with model inheritence
Having jotted down some models, with some inheritence I tried to run some unit tests. After waiting for rake test_units to run I got a rake of errors (if you''ll forgive the play on words). The errors were to do with unknown tables in the tear down stage. The unknown tables corresponded to sub-types where single table inheritence was used. In other words, these tables *shouldn''t*
2008 Jun 24
2
problem with rgl interactivity with R-2.7.1 and Ubuntu Hardy
I'm trying to use the rgl package on R-2.7.1 running on top of Ubuntu Hardy amd64. using open3d() and plot3d() I get a plot, but it is not interactive. Furthermore, changes to par3d("FOV"=my.new.value) do nothing. I suspect something is wrong with the rendering engine or interface to it. I do have an Nvidia driver installed and compiz works correctly on the desktop. I've
2008 Nov 24
8
matching matrix columns to a vector
I need help with (hopefully) just one more thing. I have been fussing with this for quite some time and have decided just to give up and ask! I want to match a column in a matrix to a vector. I found a "which" command that I thought would be helpful as it does the following: > g=c(1,5,3,2,7) > which(g==5) [1] 2 As the above gave which placement in the g vector corresponded to
2011 Apr 15
2
boxplot with 2 treatments and 2 variables (with 2 corresponding y-axes)
Hi, I am a complete newcomer to R and although I can plot standard box-plots I am struggling with this... I have two treatments - A & B, and 2 variables 1 & 2. I want to compare boxplots of variable 1 with variable 2 for each treatment. I would also like them to all be on the same graphic. I would like treatment to be on the x axis (A and B) and above A and B have their corresponding
2003 Sep 17
6
3.7.1p1 PAM Problems in RedHat 6.2
I've corresponded with several different techs at a major dedicated webhosting provider and they too so far have not been able to determine why the newest version of OpenSSH 3.7.1p1 is conflicting with PAM on our server running RedHat linux 6.2. I've also tried installing 3.7.1p1 on other RedHat 6.2 servers and the exact same PAM problems. But on 7.1 RedHat servers I've had absolutely
2013 May 23
2
[LLVMdev] LLVM Loop Vectorizer puzzle
Hi, I have the llvm loop vectorizer to complie the following sample: //================= int test(int *a, int n) { for(int i = 0; i < n; i++) { a[i] += i; } return 0; } //================ The corresponded .ll file has a loop preheader: //================ for.body.lr.ph: ; preds = %entry
2010 Feb 28
4
Reducing a matrix
I wish to rearrange the matrix, df, such that all there are not repeated x values. Particularly, for each value of x that is reated, the corresponded y value should fall under the appropriate column. For example, the x value 3 appears 4 times under the different columns of y, i.e. y1,y2,y3,y4. The output should be such that for the lone value of 3 selected for x, the corresponding row entries
2010 Feb 12
1
data frames; maybe aggregate?
Hi all, Another one: Given a data frame with two columns, where the first column (let's call it 'id') has redundant entries, I'd like to get, for each unique value in 'id', a list or vector of all the values from the second column that corresponded to that value. Example: > df <-
2009 Feb 11
1
Re: Can't run Evidence Scribe
Hi, I'm the Evidence Scribe developer. I've actually corresponded with the original poster about this and worked things out (I'm building a version specifically for Linux). moosehadly can verify that this problem has been solved if you need him to. Could a moderator delete this thread? The topic is "Can't run..." and it is showing up in Google results looking like
2009 May 20
1
Windows Nut Client supporting hibernate.
I am aware of 2 windows nut clients both interestingly called winnut. One (winnut 2.0.0b) is a service based client based on a port of the but client code (I think). The other is a GUI client based on (I think again) on knutclient . I have corresponded with both authors about a feature request - to allow the shut-down action to be (optionally) a windows hibernate. This seems a very
2009 Oct 18
1
installing working skype possible???
I easily installed and used skype on my previous linux distro on this same machine, but am having problems getting it to work on my relatively new centos 5.3. I downloaded three versions of skype from their website: the two fedora rpms wouldn't install, their error messages complaining that it needed another package, a package which was already installed. (I figured it had to be looking for
2006 Nov 16
3
Newbie problem ... Forest plot
Hello! I have some data stored into 2 separate csv file. 1 file (called A.csv) (12 results named Group1, Group2, Group3, etc...) odds ratios, 2 file (called B.csv) 12 corresponded errors. How to import that data into R and make forest plot like I saw inside help file Rmeta and meta with included different font colors and names trough X and Y axis. I know for meta libb ... out <-
2014 Feb 04
1
NFS not recognizing available file space
Hi, I have a server running under CentOS 5.8 and I appear to be in a situation in which the NFS file server is not recognizing the available space on a particular disk (actually a hardware RAID-6 of 13 2Tb disks). If I try to write to the disk I get the following error message [root at nas-0-1 mseas-data-0-1]# touch dum touch: cannot touch `dum': No space left on device However, if I check
2010 Apr 26
3
Identifying breakpoints/inflection points?
Hello! I have a dataset with the following two vectors: year<-c(1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009)
2013 May 23
0
[LLVMdev] LLVM Loop Vectorizer puzzle
Hi, The TinyTripCountVectorThreshold only applies to loops with a known (constant) trip count. If a loop has a trip count below this value we don’t attempt to vectorize the loop. The loop below has an unknown trip count. Once we decide to vectorize a loop, we emit code to check whether we can execute one iteration of the vectorized body. This is the code quoted below. On May 22, 2013, at 10:23
2000 Jun 22
13
installing samba
Hi, I just downloaded the latest version of Samba in the form of samba-latest.tar.gz Managed to unzip it with gunzip but cannot figure out how to install it. Tried rpm but didn't work. I have an earlier version of Samba (2.0.6) on my SuSE 6.4 machine already. Can I just install the new version or do I need to do some sort of uninstall of the previous version first. advTHANKSance, Mariann
1999 Dec 08
1
nobody uid printing
Hi, Background info: running samba 2.0.5a on Solaris 2.6 Security = share This is the printer share definition, note no guest or public definition. [printers] comment = All Printers browseable = no # Set public = yes to allow user 'guest account' to print path = /var/spool/samba printable = yes createmode = 0700 Basically the situation is this: I used to have the
2019 Jul 19
1
difficulty with sanitizer using bigmemory
Dear all, bigKRLS, which has been on CRAN for a couple of years, had to be pulled recently due to what seems to be a sanitizer issue stemming from its use of bigmemory. bigKRLS works fine (we?ve used it ourselves on many different platforms and have had over 15,000 downloads without an end user reporting difficulties because of this issue). Unfortunately, we have been unable to reproduce the