Displaying 20 results from an estimated 100 matches similar to: "How to startup multi auth daemond"
2012 Oct 23
1
[LLVMdev] Clang fails to compile template with dependendent Non type template parameter.
Hi All,
I'm trying to compile the following code on clang-
template <int dim> class X {};
template <class T> struct Y {
static const unsigned int dim = 1 ;
template <class U> X<Y<T>::dim> f();
};
template <class T> template <class U>
X<Y<T>::dim> Y<T>::f() { return X<dim>(); }
int main()
{
Y<int>().f<int>();
2009 Apr 09
0
crashed with shared namespace
Hi,
I have a shared namespace, which works fine yesterday. Today I have just
updated my dovecot to the newest from hg.dovecot.org, and it crashed
when list the shared namespace.
namespace shared {
separator = /
prefix = shared/%%u/
location = maildir:%%h/Maildir:INDEX=~/Maildir/shared/%%u
list = children
subscriptions = no
}
cmd:
# telnet
2009 Apr 10
2
Can virtual mailboxes created automatically?
Hi,
I set a virtual namespace, and for new users, there is no root dir for
it.
namespace private {
separator = /
prefix = virtual/
location = virtual:~/Maildir/virtual
list = no
hidden = yes
}
log:
Apr 10 12:14:41 mail dovecot: IMAP(test1 at xueron.com):Namespace 'virtual/': virtual: Root mail directory doesn't
2009 Apr 07
2
Is there any more detailed docs about dict configuration
Hi,
I am looking for some help on dict configration. I'm trying to config
shared and public mailbox, and use sql as acl backend.
Here is my config:
table:
CREATE TABLE `shared_dict` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`from_user` char(50) NOT NULL,
`to_user` char(50) NOT NULL,
`status` int(10) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `from_user` (`from_user`),
2009 Mar 17
2
problem with ldap
Hi,
dovecot-1.2 from hg.dovecot.org
openldap-2.4.11
passdb.o: In function `passdbs_init':
/home/src/dovecot-1.2/src/auth/passdb.c:230: undefined reference to `passdb_ldap'
userdb.o: In function `userdbs_init':
/home/src/dovecot-1.2/src/auth/userdb.c:177: undefined reference to `userdb_ldap'
collect2: ld returned 1 exit status
--
Xueron Nee
http://www.xueron.com
2009 Apr 09
2
why not install utils (idxview logview ...) with dovecot in bin/sbin dir?
Hi,
I just found these useful tools :) they were installed in libexec dir :)
--
Xueron Nee
http://www.xueron.com
2007 Jan 25
1
sieve question
hi,
I am testing deliver with sieve support, and want to use it to filter
chinese. But I found it doesn't work.
an encoded subject: =?GB2312?B?aSBhbSBhIGNoaW5lc2U=?=
decoded content is: i am a chinese
and i have such rules:
require "fileinto";
if header :contains "Subject" "GB2312" {
fileinto "Hello";
}
if header :contains "Subject"
2007 Jan 07
1
Is there any way to setup a super password?
Hi
Can I set up a super password and use it to login as any user.
Thanks!
--
Xueron Nee <xueron at gmail.com>
2009 Apr 07
1
public folders question
Hi,
Shared folders is ok now. and when I create a public folder follow the
doc http://wiki.dovecot.org/SharedMailboxes/Public, I can not get the
boxes listed.
namespace:
type: public
separator: /
prefix: public/
location: maildir:/home/data/public:INDEX=~/Maildir/public
list: children
# ls /home/data/public/ -a
. .. dovecot-shared .test1 .test2 .test3
And then, I checked the
2009 Apr 09
1
dbox problem
Hi,
I have just tested the dbox format mailbox, it works fine.
But when I create dir through imap with `create` command, it only
creates the dir onder ~/dbox/mailboxes, such as
~/dbox/mailboxes/newfolder. There was no `dbox-Mails` dir created. So
the newfolder was 'noselect'.
But the new folders created by `autocreate` plugin was correct.
--
Xueron Nee
http://www.xueron.com
2009 Apr 09
1
INBOX lost in virtual namespace
Hi,
I have set a virtual namespace to create Virtual POP3 INBOX follow:
http://wiki.dovecot.org/Plugins/Virtual
dovecot.conf:
mail_location = maildir:~/Maildir
# default namespace
namespace private {
separator = /
prefix =
list = yes
hidden = no
subscriptions = yes
}
# virtual mailbox, for pop3
namespace private {
separator =
2009 Jul 02
1
dovecot start up messages
Hi,
Why dovecot prints these messages when start up? And how to suppress it?
# /home/mail/init/dovecot.init restart
Stopping Dovecot: [ OK ]
ILoading modules from directory: /home/mail/lib/dovecot/imap
IModule loaded: /home/mail/lib/dovecot/imap/lib01_acl_plugin.so
IModule loaded: /home/mail/lib/dovecot/imap/lib02_imap_acl_plugin.so
IModule loaded:
2006 Mar 07
0
[IMAP] mails holded in tmp directory
Version: 1.0.beta3
OS: Redhat AS 4
I use the cvs version of Dovecot to run my IMAP server.
When I move some mails from one folder to another, only 1 or 2 mails are
moved, while others were holded in the tmp directory of the target
folder. So, what's the matter? I use becky and Outlook as client, and
both of the two have the same problem.
Thanks :)
--
Xueron Nee <xueron at
2006 Mar 07
0
[IMAP] Strange! No problem when I import mails from local to server.
Hi, All:
I hava just post a question that says when I move mail from one folder
to another, mails were holded in the tmp directory of the target folder.
I try to move mails from server to local and then, move them from the
local folder to the server side folder, it works fine :) I refresh the
tmp directory and could see tmp files created-unlinked, and all mail
imported to the target folder
2010 Jul 27
1
sieve error
Hi,
dovecot-2.0-rc3
dovecot-2-0-pigeonhole-4cb55beaca07
when I run 'doveadm config', it prints such error, any help? thanks :)
*** glibc detected *** /home/mail/bin/doveconf: munmap_chunk(): invalid pointer: 0x001115fc ***
======= Backtrace: =========
/lib/i686/nosegneg/libc.so.6(cfree+0x188)[0x36e758]
/home/mail/lib/dovecot/libdovecot.so.0[0x7db41a]
2012 Oct 24
0
[LLVMdev] Clang fails to compile template with dependendent Non type template parameter.
Understood the fix. Thanks Richard.
------- Original Message -------
Sender : Richard Smith<richard at metafoo.co.uk>
Date : Oct 24, 2012 05:01 (GMT+09:00)
Title : Re: [LLVMdev] Clang fails to compile template with dependendent Non type template parameter.
Questions about Clang should be directed to cfe-dev at cs.uiuc.edu, not
to llvmdev at .
This issue is fixed in r166496.
On Tue, Oct
2007 Jun 26
2
Power calculation with measurement error
Hi all,
Hopefully this will be quick, I'm looking for pointers to packages/
functions that would allow me to calculate the power of a t.test when
the DV has measurement error. That is, I understand that, ceteris
paribus, experiments using measure with more error (lower
reliability) will have lower power.
Mike
--
Mike Lawrence
Graduate Student, Department of Psychology, Dalhousie
2009 Mar 27
7
multiple sql servers - loadbalancing and failover
Hi,
Is there a way for dovecot to use a pool of sql (mysql) servers and load
balance queries between these?
Also fallback to next available sql server if connection to previous one
fails.
Can dovecot do such things currently? (If not this is feature request).
--
Arkadiusz Mi?kiewicz PLD/Linux Team
arekm / maven.pl http://ftp.pld-linux.org/
2010 Aug 13
1
v2.0.rc6 released
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc6.tar.gz
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc6.tar.gz.sig
I expect this to be the last release candidate. Unless release critical
bugs are reported, I'll update the version number to v2.0.0 on Monday
morning without any other changes.
Since rc5 there have been mainly some small fixes and some error message
improvements. The only
2010 Aug 13
1
v2.0.rc6 released
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc6.tar.gz
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc6.tar.gz.sig
I expect this to be the last release candidate. Unless release critical
bugs are reported, I'll update the version number to v2.0.0 on Monday
morning without any other changes.
Since rc5 there have been mainly some small fixes and some error message
improvements. The only