Displaying 20 results from an estimated 1000 matches similar to: "Outlook 2002 sp-2 and initial connection after OS reboot"
2004 Sep 06
4
100% CPU utilisation
Dovecot (0.9.11) consumes 100% CPU utilisation when accessing
(either pop or imap) one of my mailboxes. It doesn''t happen
with other mailboxes.
The mailbox has about 500 mails while others have many more.
They are all in mbox format.
OS: OpenBSD-3.5 with all patches
MTA: Sendmail-8.12.11
It happened with other RCs of dovecot-0.9.11
Configured as: ./configure --without-pam
2004 Sep 02
1
File isn''t in mbox format: /var/mail/user1
I lately see lots of message like this in my maillog:
Sep 1 11:12:31 onion pop3-login: Login: user1 [203.11.35.29]
Sep 1 11:12:31 onion pop3(tekciz): File isn''t in mbox format: /var/mail/user1
Sep 1 11:12:31 onion pop3(tekciz): File isn''t in mbox format: /var/mail/user1
Sep 1 11:12:31 onion pop3: I/O leak: 0x1c00881c (0)
Sep 1 11:12:31 onion pop3: I/O leak: 0x1c034f1c (1)
2006 Jan 26
1
construct a bundle, subdirs do not exist?
Hi,
Sorry to bother, but I checked around and did not succed creating a
bundle from six existing packages (which are checkable, installable,
etc. individually). I carefully followed the procedure given in ch.
1.1.5 Package bundles. However, I am getting
hoffmann at fluke:~/R/Sources >R CMD check cwhmisc
* checking for working latex ... OK
* using log directory
2004 Sep 02
1
UPDATE: File isn''t in mbox format: /var/mail/user1
> -----Original Message-----
> From: dovecot-bounces@dovecot.org
> [mailto:dovecot-bounces@dovecot.org]On
> Behalf Of Zoong Pham
> Sent: Thursday, 2 September 2004 4:09 PM
> To: dovecot@dovecot.org
> Subject: [Dovecot] File isn''t in mbox format: /var/mail/user1
>
> I lately see lots of message like this in my maillog:
>
> Sep 1 11:12:31 onion pop3-login:
1999 Jul 21
4
Regarding Samba issue
I am experiencing a problem with all time stamps having the same date
and time stamp. I found this bug report
http://us1.samba.org/listproc/samba/June1998/0239.html
and see there is a fix. The question I have is has this issue been
resolved in later versions of Samba code. It would be easier to upgrade
than deal with a code change and re compilation.
Scott Ranzal
-------------- next part
2010 Jan 14
2
paired repeated measurements
I have the following problem:
I measured co2 on 6 paired sites (one grubbed and one non-grubbed
fence per site -> grubbing = treatment). These measurements I repeated
15 times over 2 years. So, now my problem is how to analyze these
data. I tried the following model:
mod1_CO2<-lme(co2~treatment+time,random=~1|site,data=CO2_t1_t15)
I think with the random effect I included the paired
2006 Oct 12
3
Cross two dataframe
Dear r-users!
I would like to cross two data frame which have the same row number but
different in the number of column. Can anybody help me for this case ?
Thanks a lot in advance
--------------------------------------------------------------------------------
Majid Iravani
PhD Student
Swiss Federal Research Institute WSL
Research Group of Vegetation Ecology
Z?rcherstrasse 111
2020 Nov 18
2
formatting issue with gcc 9.3.0 on Ubuntu on WSL2
On Wed, 18 Nov 2020 at 10:26, Tomas Kalibera <tomas.kalibera at gmail.com> wrote:
>
> On 11/17/20 9:34 PM, Bill Dunlap wrote:
> > I just got a new Windows laptop (i7, 10th generation CPU), installed
> > 'Windows Subsystem for Linux 2' and then installed Ubuntu 20.04 and
> > used 'apt-get install' to install packages that the R build seems
> > to
2006 Oct 13
3
multiply two matrixes with the different dimension column by column
Dear all,
I would like to multiply two matrixes with the different dimension column
by column. Let make an example:
If I have two matrixes "X" and "Y"as follow:
X<- matrix(1:12, nrow=4, ncol=3, dimnames=list(c("A","B","C","D"),
c("stage1","stage2","stage3")))
Y<- matrix(1:28, nrow=4, ncol=7,
2002 Sep 04
3
logical and NA
Hi there, (sorry Martin, ich habe den falschen Empfaenger erwischt :-( )
Is there a function in the base package or elsewhere which returns TRUE and
not NA, even if NA is involved: (I did not find in the help system :-( )
if ( x==something & !is.na(something))
or
if ( x==something & !is.na(x==something))
If "something" is complicated, a function would be handy.
Thanks
2004 Mar 24
6
First Variable in lm
Hi all,
I just cannot think of how to do it:
I want to take the first variable (column) of a data frame and regress
it against all other variables.
bla <- function (dat) {
reg <- lm(whateverthefirstofthevariablenamesis ~., data=dat)
return(reg)
}
What kind of function do I have to take instead of the
whateverthefirstofthevariablenamesis,
eval(), substitute(), get(), ...
to
2004 Sep 22
1
is.constant
>>x <- c(1, 2, NA)
>>is.constant(x)
>
> [1] TRUE
>
> For data such as c(1, 1, 1, NA), I should think the safest answer should be
> NA, because one really doesn't know whether that last number is 1 or not.
>
> Andy
>
My version is
is.constant <- function(x) {
if (is.numeric(x) & !any(is.na(x))) identical(min(x), max(x)) else FALSE
}
2008 Dec 05
1
How to retrieve a method
Hi there,
I am interested in the inner workings of wilcox.test:
> wilcox.test
function (x, ...)
UseMethod("wilcox.test")
<environment: namespace:stats>
how can I get at the code, if it is R-code? For Methods one should be able to learn what extension to use, but here default or such do not help.
Is there a wayplot.default to learn which different versions of
2006 Jan 11
2
Browser problem, Misrepresentation of .html in Solaris Firefox (PR#8471)
Hi there
I hope that I am in the right forum.
I am working on Win2000 PC connected via Exceed 6.0.1.0 to a
SunOS fluke 5.9 Generic_118558-11 sun4u sparc SUNW,Sun-Fire-480R
There I am using Mozilla Firefox 1.0.7 as a browser.
I am having
difficulties viewing .html files. Their first pages are displayed
normally, black on white, links in blue. When I scoll down, the pages
appear black
2001 Feb 14
2
assignment function
Hi,
I am trying to create the assignment function:
"substring<-" <- function(text, first, last=100000, sub) {
if(is.character(first)) {
if(!missing(last)) stop('wrong # arguments')
return(sedit(text, first, sub))
}
lf <- length(first)
if(length(text)==1 && lf > 1) {
if(missing(last)) last <- nchar(text)
last <- rep(last,
2005 May 07
3
converting NA/non-NA's to a binary variable
Dear R colleagues,
I am trying to create a new column in a data frame, which converts values
and NA's from another column into binary format. Essentially I need the
NA's to become 1 and the rest to be 0. The code I wrote is returning the
following error message:
Error in if (mort[i, 4] != NA) mort[i, 8] <- 0 else if (mort[i, 4] == :
missing value where TRUE/FALSE needed
2001 Feb 05
1
packages, help
Hi,
Using help under help.start() is working fine (html)
Q1:
using > ?solve results in the message
"sh: ~/R/tmp/R4f32S1cfb: cannot open"
displayed in the XEmacs buffer "help[R](solve)". BUT there exists a file
R.R4f32S167e
in that directory. (not quite the same name).
Does the "sh: " prefix suggest that the shell "sh" is run, although my
2002 Nov 06
5
"chemical" plot
Hi all,
May be there is a plot which shows 3 variables in a triangle, their sum
being constant. I have forgotten its name, and a search in the engine using
"plot" did not help.
Does anyone know of such a procedure in R or S?
Thank you
--christian
Dr.sc.math.Christian W. Hoffmann
Mathematics and Statistical Computing
Landscape Dynamics and Spatial Development
Swiss Federal Research
2004 Aug 10
2
Newbie about Mbox or Maildir
Hi,
Thanks in advance. I am not sure if my system is setup to use 'mbox' or
'maildir'. How do I find this out?
I am running an OpenBSD (v3.5) box with an Intel P3 motherboard. I have
installed the OpenBSD port of Dovecot (0.99.10) and have manually started
dovecot and configured the ssl certificates as per the documentation. As
far as I can tell there is no problems but I am
2007 Feb 01
2
How can I calculate conditional mean in a large dataset including date data
Dear R users,
I have a dataframe with two columns: first column is date data (e.g.
1/1/2000 with character format: daily data from 1/1/1970 till 31/12/2003)
and second column is temperature value. Now I'd like to calculate mean for
each month in a year (i.e. May 2001, June 1997) and mean for each month in
all of years. As the number of days in some months is different from others
I could