Displaying 20 results from an estimated 3000 matches similar to: "best practice to have sent mail folder on dovecot imap server"
2007 Apr 24
3
could netcard be hotpluged in a running VM?
hi
I have try to "xm block-attach " to hotplug a disk into a running paraVM
and I want to kown whether the netcard could be hotpluged into a
running paraVM?
if it could , how to do it?
could you holp me
Thanks in advance
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2012 Aug 06
1
more efficient way to parallel
Dear All,
Suppose I have a program as below: Outside is a loop for simulation (with
random generated data), inside there are several sapply()'s (10~100) over
the data and something else, but these sapply's have to be sequential. And
each sapply do not involve very intensive calculation (a few seconds only).
So the outside loop takes minutes to finish one iteration.
I guess the better way
2005 Feb 12
3
data.frame into list by columns; merge and row.names
Hi
a)
I want to make a list out of a data.frame, where each element of the
list is a column of the data.frame.
I looked in the archives and saw a lot of postings but surprsingly
none elucidated me. I also tried the split, aggregate help files and
counldn't see any easy way to do this. I wouldn't be surprised if
it's there, but I really didn't see it.
I solved the problem
2013 Oct 30
1
Configuring SPECIAL-USE Dovecot 2.0.9
Hi All,
I'm trying to configure Dovecot 2.0.9 to support Outlook 2013.
As I understand it, I need to configure XLIST. I have added
imap_capability = +XLIST
to 20-imap.conf
When I try to query the IMAP folders I get an error "An IMAP command
Failed". Looking at the logs I get XLIST Command not found.
I can only assume that I'm missing something in the
2011 Mar 17
1
assigning to list element within target environment
I would like to assign an value to an element of a list contained in an
environment. The list will contain vectors and matrices. Here's a simple
example:
# create toy environment
testEnv = new.env(parent = emptyenv())
# create list that will be in the environment, then assign() it
x = list(a=1,b=2)
assign("xList",x,testEnv)
# create new element, to be inserted into xList
c = 5:7
2009 Sep 03
1
Output from as.windrose() in oce package baffles me
I'm having trouble understanding the output from as.windrose(). For one
thing, data on a boundary between sectors seem to be left out of the
counts. I assume that explains the missing point in the output below
(angle 45). Shouldn't one side of each sector interval be open, to
include values such as my 45 in the example? Also, why does the angle
180 in my input apparently not result in
2004 Oct 01
1
cumsum over a list or an array
Hello list,
my question is related to svd of a matrix:
b=matrix(rnorm(50),10,5)
mysvd=svd(b)
I would like to compute each xi where xi = di* ui %*% t(vi). I do it by :
xlist=sapply(1:ncol(b), function(x1,y)
y$d[x1]*y$u[,x1]%*%t(y$v[,x1]),y=mysvd,simplify=F) # result is a list
xarray=array(sapply(1:ncol(b), function(x1,y)
y$d[x1]*y$u[,x1]%*%t(y$v[,x1]),y=mysvd),c(nrow(b),ncol(b),ncol(b))) #
2011 May 19
2
balanced panel data
I have a dataframe with many firm-year observations and many variables.
Not all firms have information for all the years.
I want another dataframe with only those firms that have information all
years.
This is, I want a balanced panel data, but with the maximum number of years.
In my reprocucible example I want to keep firms 1,2 and 3 (period 2000 to
2004).
I need your help to create a
2005 Feb 01
2
forcing a file to have the same uid from parent directory
Hi,
I have a little problem, sometimes the administrator must put a file in a
home directory. But the owner of this file is root, not the user which
have the home directory.
Example :
/rsrv/data1/home/toto toto Utilisateurs 0700
+ toto.id root Administrateurs 0700
+ fichier.xls toto Utilisateurs 0700
I would like to kown how I set up my
2009 Jan 19
2
Shared Mailboxes (symlink) and kmail: known issues?
Hi,
are there any known issues with symlinked-shared-mailboxes and kmail?
I use virtual users (LDAP), so there are no unix-permissions related
problems here: all mailboxes are owned by the local user vmail.
Each user maildir has some symlinks to shared mailboxes. This works
fine if I use squirrelmail as a MUA.
kmail instead seems to have some problems: if I save a mail into the
2010 Nov 23
2
Question about list function
Dear List I'm a newbie R user.
I'm utilizing the list function in order to make a var like this:
clusters<-list(a=var1,b=var2....) My problem is that the total numer of
variables that I need to include in my list is up to 200. I've the text
string with the complete list of my variables but is too long to cut and
paste in my bash shell.
So is there a way too import the list from a
2008 Jun 24
3
Why CentOS 5.2 is so large?
Hi, folks.
I have download the DVD image of CentOS 5.2. Comparing with the DVD
image of Upstream OS Provider, I got a surprise:
The size of the DVD image of Upstream OS Provider is just 2.87
GB(i386), but the size of the DVD image of CentOS 5.2(i386) is so
large that is 3.74 GB!
I kown that CentOS's developers did very excellent work on how to make
the Upstream OS more availability and add
2006 Jan 26
5
Support for Kmail maildir format
Has anyone looked into providing support in dovecot for Kmail folders? I
would like to make my Kmail folders (on my main desktop system) available to
my other systems (including over a VPN when I am travelling). Kmail is my
main mail program and I have a lot of mail in a lot of folders, so I don't
want to set up a separate IMAP service and move all the mail and folders.
Kmail's use
2020 Jul 07
4
Dovecot Maildirs multi language
Hello,
I'm hosting a few customers on a dovecot Server. Most users speak german
and have german as their main language. I configured the IMAP Foldernames
in a Dovecot configuration file like this:
#####
root at srv04:~# cat /etc/dovecot/conf.d/105-mailboxes.conf
imap_capability = +XLIST
namespace inbox {
inbox = yes
location =
separator = /
mailbox "Entw?rfe" {
auto
2016 Jul 24
4
KMail
Any hope of KMail (and Kontact) coming to CentOS-7?
What exactly is the problem?
KMail seems to work on other Linux OS's.
--
Timothy Murphy
gayleard /at/ eircom.net
School of Mathematics, Trinity College, Dublin
2007 Apr 11
5
how to reverse a list
Hi, there:
I am wondering if there is a quick way to "reverse" a list like this:
t0 <- list(a=1, b=1, c=2, d=1)
reverst t0 to t1
> t1
$`1`
[1] "a" "b" "d"
$`2`
[1] "c"
thanks.
--
Weiwei Shi, Ph.D
Research Scientist
GeneGO, Inc.
"Did you always know?"
"No, I did not. But I believed..."
---Matrix III
2004 Dec 15
2
KMail + dovecot
Is anyone running docecot on a home LAN.
to give an IMAP feed to other machines on the LAN?
I am running dovecot on my desktop, alfred.
I want to collect email on my laptop, william, using KMail.
As far as I can tell, dovecot is running perfectly.
I can bring email from /var/spool/mail/tim on alfred
to the same directory on william
by running "fetchmail alfred" on william.
I can then
2006 Sep 24
4
crush when play SC
after installation and everything is fine, then when I try to turn SC.exe, X
crushes, saying something like 3D parameters passed didn't match the
hardware or something, please help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.winehq.org/pipermail/wine-users/attachments/20060924/c4931591/attachment.htm
2005 Mar 13
6
Plain Authentication - Outlook not working
Hi
I have just upgraded a mail server from dovecot-0.99 to stable
(dovecot-1.0.59).
My normal desktop email client, kmail is working fine, but outlook keeps
producing PLAIN authentication errors, and refusing to authenticate.
From dovecot.log, I can see
dovecot: Mar 13 10:57:30 Error: auth(default): sql(<xxxxxxxMy
Detailsxxxxxxxxxxx>): Password query must return a field named
2003 Dec 04
2
[LLVMdev] another question
hi,
when i change the OBJ_ROOT and recompile the llvm, it's successful.
but run following test, then the error occues:
-----------------------------------------------------
[yue at RH9 obj]$ make -C ./test/Programs
make: Entering directory `/home/yue/llvm/obj/test/Programs'
make[1]: Entering directory `/home/yue/llvm/obj/test/Programs/SingleSource'
make[2]: Entering directory