Displaying 20 results from an estimated 20000 matches similar to: "Random Loss of Connection with Thunderbird and Dovecot"
2010 Dec 26
2
[Bug 32658] New: random logout causes data loss
https://bugs.freedesktop.org/show_bug.cgi?id=32658
Summary: random logout causes data loss
Product: xorg
Version: unspecified
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
2011 Apr 08
1
Compiling Error with Dovecot 1.0.7 and Sieve 1.0.4
Hi,
I am having compiling issues with Sieve and I am not sure what the error
is stating.
[root at iosmail dovecot-sieve-1.0.4]# make
make all-recursive
make[1]: Entering directory `/home/jayw/Desktop/dovecot-sieve-1.0.4'
Making all in src
make[2]: Entering directory `/home/jayw/Desktop/dovecot-sieve-1.0.4/src'
Making all in libsieve
make[3]: Entering directory
2019 Aug 02
2
Re: nbdkit random seek performance
On Thu, Aug 01, 2019 at 03:44:31PM -0700, ivo welch wrote:
> hi richard---arthur and I are working with nbdkit v1.12.3 on qemu/kvm.
>
> we found that our linux (ubuntu 16.04 32-bit) boot time from a local .img
> file went from about 10 seconds to about 3 minutes when using the nbdkit
> file plugin instead of directly connecting qemu to the file. on further
> inspection with
2011 Aug 10
2
Thunderbird Will Not Download Email Until Computer Is Rebooted
Hey Guys,
Have any of you seen an issue with Thunderbird in which the computer has
to be rebooted for email to be downloaded? I have been looking over the
InterWebs and I cannot find anything. I can see new email on the server
as well. Where would be a good place to start for troubleshooting this
issue?
Thanks
2009 Mar 05
3
Maildir dirty syncs
http://dovecot.org/patches/1.1/maildir-dirty-syncs.diff
This patch adds a new maildir_very_dirty_syncs setting. If set to "yes",
Dovecot assumes it's the only one changing the cur/ directory (so other
MDAs can add mails to new/ without problems). This makes it possible to
avoid rescanning the cur/ directory all the time looking for filenames.
It also looks like (in stress testing)
2008 May 02
2
FAQ: setting thunderbird to talk to dovecot
Let's say I have a postfix box, named mail.thespider.com, which is
setup to handle virtual mailbox domains. One of these domains will
handle is, thespider.com, and my email address in that domain is
boris at thespider.com. As I setup dovecot, I can telnet to the pop3 port
(110) and test it by logging in as boris at thespider.com (I would try
the imap port but I do not know how to login to imap
2003 Jan 08
3
Logging suggestions?
Any suggestions how user login/logouts should look like in log files? I
was thinking:
(connected to imaps port)
Login: username [IP 1.2.3.4, imaps, compressed]
Logout: username [IP 1.2.3.4, imaps, compressed] [1000/100000 bytes (50%), 00:00:12]
Bytes being upload/download and the 50% meaning compression ratio for
downloaded bytes, probably not worth it for upload. Or if uncompressed,
it'd
2011 Aug 05
1
Dovecot 1.2.16 and Thunderbird 5 - pop3 mails not getting deleted
I run a Dovecot 1.2.16 pop3 server and have just started using the
Thunderbird 5 email client.
Thunderbird is set to leave the messages on the server unless they are
over 91 days old. However, I'm not seeing it delete any of the older
messages.
I'll run a debug run of Thunderbird when I get back home, but I'm just
wondering if there's any gotcha's I should be aware of with
2012 Mar 30
4
list assignment syntax?
Dear R wizards: is there a clean way to assign to elements in a list?
what I would like to do, in pseudo R+perl notation is
f <- function(a,b) list(a+b,a-b)
(c,d) <- f(1,2)
and have c be assigned 1+2 and d be assigned 1-2. right now, I use the clunky
x <- f(1,2)
c <- x[[1]]
d <- x[[2]]
rm(x)
which seems awful. is there a nicer syntax?
regards, /iaw
----
Ivo Welch
2011 Oct 10
5
multicore by(), like mclapply?
dear r experts---Is there a multicore equivalent of by(), just like
mclapply() is the multicore equivalent of lapply()?
if not, is there a fast way to convert a data.table into a list based
on a column that lapply and mclapply can consume?
advice appreciated...as always.
regards,
/iaw
----
Ivo Welch (ivo.welch at gmail.com)
2010 Mar 08
1
why this function does not run correctly?
? stato filtrato un testo allegato il cui set di caratteri non era
indicato...
Nome: non disponibile
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100308/a80f5468/attachment.pl>
2019 Jan 04
4
thunderbird & firefox
I *really* dislike the new photon UI. I WANT the arrow buttons top and
bottom of the scrollbars.
Does anyone know how to bring them back, or is that "that's *sooo* last
year, you can't ever have them again"?
mark
2013 Apr 04
6
categorized complete list of R commands?
every time I read the R release notes for the next release, I see many
functions that I had forgotten about and many functions that I never knew
existed to begin with. (who knew there were bibtex facilities in R?
obviously, everyone except me.)
I wonder whether there is a complete list of all R commands (incl the
standard packages) somewhere, preferably each with its one-liner AND
2013 Feb 07
4
Hard Stop?
is it possible to throw a stop() that is so hard that it will escape
even tryCatch?
/iaw
----
Ivo Welch (ivo.welch at gmail.com)
2010 Jan 08
4
fast lm se?
dear R experts---I am using the coef() function to pick off the coefficients
from an lm() object. alas, I also need the standard errors and I need them
fast. I know I can do a "summary()" on the object and pick them off this
way, but this computes other stuff I do not need. Or, I can compute (X'
X)^(-1) s^2 myself. Has someone written a fast se() function?
incidentally, I think
2011 Jul 02
5
%dopar% parallel processing experiment
dear R experts---
I am experimenting with multicore processing, so far with pretty
disappointing results. Here is my simple example:
A <- 100000
randvalues <- abs(rnorm(A))
minfn <- function( x, i ) { log(abs(x))+x^3+i/A+randvalues[i] } ?## an
arbitrary function
ARGV <- commandArgs(trailingOnly=TRUE)
if (ARGV[1] == "do-onecore") {
?library(foreach)
?discard <-
2010 Aug 30
4
different interface to by (tapply)?
dear R experts:
has someone written a function that returns the results of by() as a
data frame? ??of course, this can work only if the output of the
function that is an argument to by() is a numerical vector.
presumably, what is now names(byobject) would become a column in the
data frame, and the by object's list elements would become columns.
it's a little bit like flattening the by()
2010 Jun 11
3
lm without error
this is not an important question, but I wonder why lm returns an
error, and whether this can be shut off. it would seem to me that
returning NA's would make more sense in some cases---after all, the
problem is clearly that coefficients cannot be computed.
I know that I can trap the lm.fit() error---although I have always
found this to be quite inconvenient---and this is easy if I have only
2012 May 09
2
big quasi-fixed effects OLS model
dear R experts---now I have a case where I want to estimate very large
regression models with many fixed effects---not just the mean type, but
cross-fixed effects---years, months, locations, firms. Many millions of
observations, a few thousand variables (most of these variables are
interaction fixed effects). could someone please point me to packages, if
any, that would help me estimate such
2011 May 15
4
"Low Pain" Unicode Characters in pdf graph?
Dear R-experts---is there a relatively low-pain way to get unicode
characters into a plot to a pdf device?
pdf(file="cardsymbols.pdf")
plot( 0, xlim=c(0,5), ylim=c(0,5), type="n")
text(1,1, "♠")
text(2,2, "♥")
text(3,3, "♦")
text(4,4, "♣")
dev.off()
(these are the characters that I need the most