similar to: Dovecot IMAP repeatedly disconnects

Displaying 20 results from an estimated 400 matches similar to: "Dovecot IMAP repeatedly disconnects"

2005 Feb 07
1
System directory L"%SystemRoot%\\system" is not accessible
Hey, all, Running Wine 20050111 under SuSE 9.2 (SuSE 9.2 package from sourceforge.net). Wine was working fine until about an hour ago; I had several programs installed and working and did not have this error (afaik). Then I decided to install Septerra Core ( http://www.lith.com/sites/septerra/ , don't download the demo, though; it is of no use in debugging, because the demo install does
2007 May 15
5
spec_server
hi all I''m trying to use spec_server to run my specs in rails, but the specs don''t seem to be running any faster, and it looks like they''re being run twice when I use the --drb option ..? The app I''m testing is just a basic rails app with 2 empty models and a hello world controller. The specs are just the default ones created by the generators. I was
2007 Dec 05
0
redirected call failure
Hi, I have the following setup: (sip clients) -internet- asterisk A -IAX- asterisk B -PRI- (pstn) This works fine for regular calls sip->pstn. the calls go through perfectly. However, when one of the sip clients (a snom320) is set to redirect to the pstn, then all I hear is congestion tones when I call that sip client. I am at a loss to see why the redirected call would fail, when the
2018 May 10
0
the first name of the first column
1. My name is Bert, not Brent; 2. I am not your private consultant -- always cc the list unless you have good reason not to. I have done that here. It looks like this is what you want; if so, you really need to go through an R tutorial or two to learn the basics: d <- structure(list(region = structure(c(1L, 1L, 1L, 1L), .Label = "zilan", class = "factor"), Fe_ppmtp =
2007 May 21
4
slow execution times using spec_server
hi all I''m seeing strange behaviour when running specs using spec_server. They take longer to execute, and it looks like none of examples are being run. here''s the output for a simple spec file using just the spec command: ---------- foo at holly:~/rails/allison$ time ruby/script spec spec/models/listing_spec.rb ...... Finished in 0.060469 seconds 6 examples, 0 failures <
2011 Apr 05
1
Getting errors with 3.0.8
Hello! I've been trying 3.0.8 on OS X 10.6.7 today and have been getting some errors. The command I'm using is: /usr/local/bin/rsync -aNHAXx --protect-args --fileflags --force-change --progress /Users/davidallie/Documents/ /Volumes/david.allie/Documents/ The target Documents folder is on an iDisk mounted as david.allie . The errors are happening at the beginning and end. BEGINNING:
2003 Feb 21
0
Samba + LDAP segfaulting
Hey, I tried to set up samba to auth via LDAP for accessing shared home directories. However, whenever a connection is made, samba segfaults. Details follow: Machine Spec: Sun E450, 2G RAM, Solaris 9 Samba 2.2.7a ] -- all openldap-2.0.23 ] -- compiled nss_ldap-203.4 ] -- from pam_ldap-159 ] -- source Samba was compiled as follows: ./configure --prefix=/usr/local/samba --with-ldapsam
2018 Feb 13
0
plotting the regression coefficients
Hi scale_colour_gradient(?red?, ?blue?) should do the trick. Actually I found it by Google ggplot colour http://www.cookbook-r.com/Graphs/Colors_(ggplot2)/ http://www.sthda.com/english/wiki/ggplot2-colors-how-to-change-colors-automatically-and-manually#gradient-colors-for-scatter-plots question. So you could find it too and probably far more quickly then myself as I have also other duties. Cheers
2011 Mar 23
3
Compare three or more values?
Is there a less cryptic way to compare three or more values? allTheSame<-c("red","red","red","red") notAllTheSame<-c(132,132,132,999) all.identical <- function(vectorToTest){ cIdentical=sum(vectorToTest %in% vectorToTest[1]) return(cIdentical==length(vectorToTest)) } all.identical(allTheSame) all.identical(notAllTheSame) Thanks in
2007 May 25
0
still seeing strange behaviour with spec_server
hi all a few days ago i reported spec_server didn''t appear to be running specs and the command itself was running slowly. I''ve since tried it on a new system with a clean install of ubuntu 7.04, rails 1.2.3 and rspec 1.0.2 and I''m seeing the same behavior. *** without spec_server *** x at holly:~/rails/test$ time ruby script/spec spec/models/user_spec.rb . Finished in
2006 Jun 09
0
Bug#372286: logcheck-database: new rule for courier
Package: logcheck-database Severity: wishlist Tags: patch Please add a new rule to the courier rule file, for messages like: Jun 9 10:26:17 holly authdaemond.plain: nss_ldap: reconnecting to LDAP server... Jun 9 10:26:17 holly authdaemond.plain: nss_ldap: reconnected to LDAP server after 1 attempt(s) The attached rule is adapted from the cron rule file. Cheers, Til -------------- next part
2005 Aug 30
0
No subject
List-Id: Wine Users Mailing List <wine-users.winehq.org> List-Post: <mailto:wine-users@winehq.org> List-Help: <mailto:wine-users-request@winehq.org?subject=help> Also, makes it easy, as once a filter is setup, and put in a folder, you can easily hit 'reply to list' On February 16, 2004 03:27 pm, Holly Bostick wrote: > Rufus Laggren wrote: > >Can we set up the
2005 Feb 22
1
Registry entry for .NET?
Hey all, I'm trying to run the HakInstaller for Neverwinter Nights (http://nwvault.ign.com/Files/other/data/1076838606000.shtml ). Unfortunately, it requires .NET 1.1 to run. I have the SuSE 9.2 Mono package (version 1.0.1; I know there's a later, but this should be OK, afaik) installed; I've loaded the module and mount reports that /proc/sys/fs/binfmt_misc is mounted. The
2004 Jul 09
0
Um, Where could I get these
>From - Subject: Re: [Wine]Umm, where would I get these From: Wolfdreamer <wolfdreamer@actrix.gen.nz> To: motub@planet.nl In-Reply-To: <2fc55d2f89b2.2f89b22fc55d@planet.nl> References: <2fc55d2f89b2.2f89b22fc55d@planet.nl> Content-Type: text/plain Organization: Message-Id: <1089418731.2765.64.camel@wolfpc> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2-3mdk Date:
2018 Feb 12
0
plotting the regression coefficients
Petr, there was a thinko in your response. tmp <- data.frame(m=factor(letters[1:4]), n=1:4) tmp tmp$m <- factor(tmp$m, levels=c("c","b","a","d")) ## right tmp[order(tmp$m),] tmp <- data.frame(m=factor(letters[1:4]), n=1:4) levels(tmp$m) <- c("c","b","a","d") ## wrong tmp[order(tmp$m),] changing levels
2011 Sep 12
2
creating a new column with values from another
I have 2 columns for weight. There are NAs in each column but not for the same observation. Some observations have values for both. I would want to prioritize the WT2 values so I would like to do the following: >From this: ID WT1 WT2 1 134 NA 2 145 155 1 NA 175 3 NA 187 To this: ID WT1 WT2 WT 1 NA
2017 Sep 19
0
remove quotes from matrix
Works fine for me. What do you object to in the following? Calling the above df "d", > dm <- as.matrix(d) > dm Sub_Pathways BMI_beta SAT_beta VAT_beta 1 "Alanine_and_Aspartate" " 0.23820" "-0.02409" " 0.94180" 2 "Alanine_and_Aspartate" "-0.31300" "-1.97510" "-2.22040" 3
2018 Feb 12
2
plotting the regression coefficients
Hi Petr and Richard; Thanks for your responses and supports. I just faced a different problem. I have the following R codes and work well. p <- ggplot(a, aes(x=Phenotypes, y=Metabolites, size=abs(Beta), colour=factor(sign(Beta)))) + theme(axis.text=element_text(size = 5)) p1<-p+geom_point() p2<-p1+theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
2004 Nov 10
1
[Fwd: Problem with write permissions]
No idea why this came to me, and seemingly me alone, but I'm forwarding to the list, as I assume that is the intended recipient. Holly -------------- next part -------------- An embedded message was scrubbed... From: "James E. Lang" <jelly@ktb.net> Subject: [Wine]Problem with write permissions Date: Tue, 09 Nov 2004 22:56:43 -0800 Size: 6932 Url:
2018 Feb 12
3
plotting the regression coefficients
Hi After melt you can change levels of your factor variable. Again with the toy example. > levels(temp$variable) [1] "y1" "y2" "y3" "y4" > levels(temp$variable) <- levels(temp$variable)[c(2,4,1,3)] > levels(temp$variable) [1] "y2" "y4" "y1" "y3" > And you will get graphs with this new levels ordering.