Displaying 20 results from an estimated 4000 matches similar to: "configure: error: fd passing is required for Dovecot to work"
2019 Jun 19
1
Cannot connect to DOVECOT from Roundcube using SSL on Port 993
Hello
I try to connect to dovecot from roundcube using this setup:
$config['default_host'] = 'ssl://chogolisa.akadia.com';
$config['default_port'] = 993;
and I get the following error message from dovecot:
Jun 19 11:30:21 chogolisa dovecot: imap-login: Disconnected (no auth
attempts in 0 secs): user=<>, rip=84.253.50.195, lip=84.253.50.195, TLS
handshaking:
2011 Nov 29
0
2.0.16 - auth with vpopmail won´t work anymore
Hi,
after upgrading from 2.0.15 to 2.0.16 authentication with vpopmail won?t
work anymore.
2.0.x and 1.2.x works (this output is from 2.0.15):
Nov 28 18:29:21 mail dovecot: auth: Debug: auth client connected (pid=3855)
Nov 28 18:29:21 mail dovecot: auth: Debug: client in: AUTH 1 PLAIN
service=imap secured lip=10.114.57.11 rip=10.114.57.11 lport=143
rport=37693
2006 Oct 06
2
looking for 4.2 minimal kickstart
Hi
I am looking for an example of a kickstart file for a simple, minimal
server install. I don't need any graphical apps just ssh, httpd and
development tools. It seems that even when I specify only the packages I
want many other packages are installed making the install very large.
Any links to guides or example kickstart files would be great.
Thanks,
Andrew Zahn
2010 Jan 25
1
reshape package cast() function
Hi all,
I think I'm cracking up. Please help me understand why I'm getting
different results with m.test and m.test2 in the example below.
> library(reshape)
Loading required package: plyr
>
> m.test <- data.frame(id = factor(rep(1:10, 2)), variable=rep(c("var1","var2"),10), value=rnorm(20))
> cast(m.test, ...~variable, value="value") ## cast
2009 Oct 25
1
A naive question about permutation tests in the coin package
Dear R helpers,
I am trying to understand how to use the independence_test function in
the coin package. I think I suffer from a misunderstanding about what
the package does. Either that or I do not understand how to use it
properly. Specifically, I cannot understand if I can test independence
of arbitrary statistics.
Take the following example:
set.seed(10)
d <- data.frame(y = c(rnorm(10,
2012 Jan 19
2
add1 GLM - Warning message, what does it mean?
Hi All, I am wondering if anyone can tell me what the warning message below
the model means?
J
add1(DTA.glm,~ Aeventexhumed + Veg + Berm + HTL + Estuary + Rayos)
Single term additions
Model:
cbind(MaxHatch, TotalEggs - MaxHatch) ~ Aeventexhumed + Veg +
Berm + HTL
Df Deviance AIC
<none> 488.86 4232.9
Estuary 1 454.96 4201.0
Rayos 3 258.80 4008.9
Warning
2007 Oct 25
2
Novice programing question
Hi all,
I apologize for the ignorance implicit in this question, but I'm
having a hard time figuring out how R functions work. For example, if
I wanted to write a function to compute a variance, I would do
something like
>my.var <- function(x) (sum(((x-mean(x)))^2))/(length(((x-mean(x)))
^2)-1)
And this seems to work, e.g.,
> my.var(V1)
[1] 116.1
> var(V1)
[1] 116.1
2010 Feb 17
1
Package or function for selecting matched pairs?
Hi all,
I am designing a study in which I am selecting a subset of college
courses to be randomly assigned to one of two conditions. I would like
to create matched pairs of courses, and then randomly assign them to
condition within each pair. I would like to identify, for each course,
the one that best matches it, and quantify how well it matches. Here
is a much simpler data set for purposes of
2017 Aug 23
2
Getting all possible combinations
> On 23 Aug 2017, at 20:51 , Ista Zahn <istazahn at gmail.com> wrote:
>
> On Wed, Aug 23, 2017 at 12:35 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote:
>> ummm, Ista, it's 2^n.
>
> ummm yes ughhhh.
>
You didn't really say otherwise: sum(choose(n,0:n)) == 2^n by the binomial expansion of (1+1)^n (but you knew that)
This points to a different
2011 Mar 11
4
Any existing functions for reading and extracting data from path names?
Hi helpeRs,
I have inherited a set of data files that use the file system as a
sort of poor man's database, i.e., the data files are nested in
directories that indicate which city they come from. For example:
dir.create("deleteme")
for(i in paste("deleteme", c("New York", "Los Angeles"), sep="/")) {
dir.create(i)
for(j in
2009 Aug 25
2
how to pass user input to a function?
Hi everyone,
I'm building a website (http://yourpsyche.org) using Jeffrey Horner's
awesome Rapache module. I want to take user input, and pass it to an R
script. At first I was simply using if else statements, but after a
while I had so many nested if else's in my code that my head was
spinning. So then I started using cat() and source() to write
temporary files and read them back in
2012 Oct 08
0
Best method for comparing rectangles sections of beach
Hi R-listers,
I am trying to compare sections of the beach separated from the HTL to the
Veg (east to west), separated into indices (-5 to 30m), HTLIndex. Cross
parallel (north to south) are major beach sections (Rayos 1, 2, 3, 4 and
MNB). I am thinking to do an ANOVA for each independent rectangle of beach
(not exactly but will be treated as). The HTL from (0-5m) in Rayo 1 is one
rectangle of
2004 Mar 04
0
AW: SAMBA 3 as PDC - W2K/WXP Pro logon trouble
Oh, so you are using ldap..., well I'm still working with smbpasswd as
backend :-(
Anyway, I tried 'net getlocalsid' for the domain-sid -> ok
Next 'net usersidlist' which should show me the user-sids -> didn't
work: "[2004/03/04 06:40:05, 0, pid=31232, effective(0, 0), real(0, 0)]
utils/net_rpc.c:net_usersidlist(2158)
Could not get the user/sid list"
So
2012 Jan 25
6
How do I compare 47 GLM models with 1 to 5 interactions and unique combinations?
Hi R-listers,
I have developed 47 GLM models with different combinations of interactions
from 1 variable to 5 variables. I have manually made each model separately
and put them into individual tables (organized by the number of variables)
showing the AIC score. I want to compare all of these models.
1) What is the best way to compare various models with unique combinations
and different number
2004 Mar 09
0
AW: WinXP Profiles
This worked. I am just having trouble with the profile I copied over to my
server. It seems like something got screwed up in the copy over. My
desktop and Start Menu, well all my windows as a matter of fact look like
win 2k instead of xp. And none of my settings I configured before I copied
it over came over.
The profile is fine until I copy it to my server. I tried it on a bunch of
xp
2017 Aug 23
3
Getting all possible combinations
ummm, Ista, it's 2^n.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Wed, Aug 23, 2017 at 8:52 AM, Ista Zahn <istazahn at gmail.com> wrote:
> On Wed, Aug 23, 2017 at 11:33 AM, Christofer Bogaso
>
2017 Aug 23
0
Getting all possible combinations
On Wed, Aug 23, 2017 at 12:35 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote:
> ummm, Ista, it's 2^n.
ummm yes ughhhh.
My point is, if the number of groups is large, check it before hand.
If you can check it without embarrassing yourself in public like I did
that's even better.
Best,
Ista
>
> Cheers,
> Bert
>
>
> Bert Gunter
>
> "The trouble
2006 Aug 03
2
(no subject)
On Thu, August 3, 2006 15:28, David Jonas wrote:
> On Thu, 2006-08-03 at 15:07 -0400, Scott Zahn wrote:
>> Hey everyone, I'm trying version 1.0rc2, via the rpm at ATrpms. I'm running on CentOS
>> 4.3 on an Opteron system. I have this running stably on a 32 bit system, but I'm
>> crashing constantly on a 64 bit system.
>>
>> Here's what I'm
2009 Oct 23
1
inspect s4 methods
Hi everyone,
I'm sure this has been asked before, but I could not find the right
search terms to find it.
If I want to see what summarizing a model fit with lm() does, I can
write "summary.lm". But what if I want to see what summarizing a model
fit with lmer() (lme4 package) does?
showMethods(summary)
Function: summary (package base)
object="ANY"
2012 May 19
3
Q - scatterplot, plot function & trellis linear regressions???
Hi R-listers,
Q1) What is the difference between the scatterplot and plot function?
Q2) I am able to make a graph with the scatterplot function:
scatterplot(DevelopIndex ~ Veg,
+ data = Turtle,
+ xlab = "Vegetation border (m)",
+ ylab = "Embryonic development index")
And have been successful. But I do not know if the lines are for: