similar to: M-Box benchmark

Displaying 20 results from an estimated 3000 matches similar to: "M-Box benchmark"

2007 Oct 03
2
In-site migration from /etc/passwd to LDAP
I'm doing in-site migration of accounts from /etc/passwd to an LDAP directory. The migration should be progressive (not all users at the same time). I'm already able to check mail for accounts in /etc/passwd and accounts in LDAP. The problem is with mail delivery. I'm using Postfix + Dovecot-LDA. This is the error I get with every delivery -- dovecot: Oct 03 00:16:09 Info:
2007 Oct 15
2
Error: net_connect(/var/run/dovecot/auth-master) failed: Resource temporarily unavailable
I'm using deliver (1.0.5) with Postfix (2.1.6). I made a test for a few minutes in a moderated busy server. While most mails was delivered, a lot of them failed with this error: deliver(userfoo): Oct 15 09:58:31 Error: net_connect(/var/run/dovecot/auth-master) failed: Resource temporarily unavailable Sounds to me something like not enough auth-master to answer every concurrent deliver. Any
2017 Feb 23
3
Scaling to 10 Million IMAP sessions on a single server
Comparison of Dovecot, Uwash, Courier, Cyrus and M-Box: http://www.isode.com/whitepapers/mbox-benchmark.html
2006 Nov 16
2
maildirsize update error
According to [1], Trash is a reserverd folder name. When moving a message to it, maildirsize should be update with a negative byte count. If I move a message from any folder to Trash, maildirsize gets two lines, one positive and one negative. The problem is that a user can't move messages to Trash while being overquota because the positive entry goes before the negative. I'm using
2008 Nov 18
1
Disconnecting without unbinding?
Timo Please have a look at this short thread[1]. That message stops appearing whenever I shutdown dovecot. I'm using dovecot 1.0.15. dovecot-ldap.conf ----------------- dn = ... dnpass = ... ldap_version = 3 auth_bind = no base = ... pass_filter = ... pass_attrs = ... user_filter = ... user_attrs = ... default_pass_scheme = MD5-CRYPT user_global_uid = vmail user_global_gid = vmail Regards,
2006 Dec 19
1
Custom mail directory with LDAP
For certain users, I have their mail boxes under /srv/mpop/<username>/Maildir. For the rest, I have their mail boxes under /srv/vmail/<username>/Maildir. mpop/ users are stored in LDAP, vmail/ users are local users so I discard the idea of set a fixed mail_location. In dovecot-ldap.conf I can't get the picture to set /srv/mpop/<username>/Maildir as mail. I'd tried
2007 Mar 05
1
Plugins in Python?
Timo Do you have plans of adding support for writing plugins in high level languages like Python? Regards maykel
2007 Oct 17
1
Per-user quota (with local users)
I'm migrating to LDAP mi local users, there is the auth section of my dovecot.conf -- auth default { mechanisms = plain socket listen { master { path = /var/run/dovecot/auth-master mode = 0660 user = dovecot group = nusers } } passdb ldap { args = /etc/dovecot/dovecot-ldap.conf } passdb pam { } userdb ldap { args =
2008 Jan 05
1
Problems with AUTH=PLAIN in pop3
I'm using Dovecot (1.0.10) locally to test SugarCRM. When I tried to set up a mail account in Sugar, it complains with -- SECURITY PROBLEM: insecure server advertised AUTH=PLAIN Please check your settings and try again. -- don't know if that behaviour is a bug or a feature of php-imap. The case is that I'm unable to set up the mail account in Sugar. Timo answered to me on IRC about
2004 Sep 07
1
[Fwd: Maildir++ support]
> In the homepage said that dovecot doesn't yet support maildir++, but in > http://dovecot.org/doc/mail-storages.txt said 'we support maildir++'. > > My question is: does dovecot support maildir++ ? > > Regards > mike
2008 Oct 30
1
benchmark dovecot
Hello, We would like to do a feed back to this active mailing list. We are working on a migration project from cyrus to dovecot. And we have just completed the benchmark sequence. As I say, this benchmark is here only to show that our old imap server is out to date. I would not be the source of controversy at all, so I try to explain my approach. Because the only thing I found was this old
2001 Feb 01
6
hello, I need some help for using wine
hello, i have this problem : [y.moya@yves y.moya]$ cd /mnt/cdrom [y.moya@yves cdrom]$ ls 3Dfx SETUP.EXE _setup.dll autorun.pak hlinst.dll setup.bmp DATA.TAG SETUP.INI _sys1.cab data1.cab lang.dat setup.ins DIRECTX Worldcraft _user1.cab dsetup.dll layout.bin setup.lid Localize.cab _INST32I.EX_ autorun.exe dsetup16.dll os.dat sierra.inf
2018 Sep 04
2
Replacing a function from one module into another one
Hi Philip, Thank you very much for your answer, the vector declaration example worked. I'm pretty sure the ValueToValueMapTy is the last thing I need because I even saw there is another function that could help me llvm*:*:RemapFunction <http://llvm.org/doxygen/namespacellvm.html#addf0183e92893bdbcde00fc9091dda93>; but my problem is that I don't know how to populate the
2018 Sep 06
2
Replacing a function from one module into another one
Hi Philip, Thanks for the reference, I was able to follow it and copy the code that I saw necessary, but I still have some issues (references are still not updated). I created the function: void populateVMap(llvm::ValueToValueMapTy &VMap, llvm::Function *fOld, llvm::Function *fNew) { llvm::Function::arg_iterator DestI = fOld->arg_begin(); for (llvm::Function::const_arg_iterator J =
2018 Sep 06
2
Replacing a function from one module into another one
Hi Philip, The error happens when the program finishes and it automatically calls the destructors, so it is not an error specifically inside my program. Here's the full code: #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ExecutionEngine/MCJIT.h" #include "llvm/IRReader/IRReader.h" #include "llvm/Support/TargetSelect.h" #include
2018 Sep 03
2
Replacing a function from one module into another one
Thank you Ahmad, I figured out that, although the type of both p(oInst) and p(nInst) were the same, I had to: for (unsigned int i = 0; i < callOInst->getNumArgOperands(); i++) { callOInst->getArgOperand(i)->mutateType(callNInst->getArgOperand(i)->getType()); } that solves the issue at the calling instruction in the main function, but now I see that *linkModules* does not work
2017 Feb 22
3
Scaling to 10 Million IMAP sessions on a single server
> On Feb 21, 2017, at 11:12 PM, Christian Balzer <chibi at gol.com> wrote: > > On Tue, 21 Feb 2017 09:49:39 -0500 KT Walrus wrote: > >> I just read this blog: https://mrotaru.wordpress.com/2013/10/10/scaling-to-12-million-concurrent-connections-how-migratorydata-did-it/
2018 Sep 02
2
Replacing a function from one module into another one
Hi Ahmad, What does that tool does besides what LLVM linker already does? I don't think my problem is in linking both modules, I think LLVM linker does the job for me, the issue is when changing the called function to call another function (in the example previously provided, to change it from foo2 to foo3, and adjusting the function parameter's references). Regards, Daniel Moya El
2005 Jan 08
3
virtual pbx
Is it possible to set asterisk up as a virtual pbx like in apache and virtual host? If so can someone point me to the right direction. I would also like to setup asterisk with some type of redundancy, I have searched the lists and googled but havent really found anything, I would be willing to put together a paper if I had the info and make it available, through asterisk doc project or
2015 Jan 13
2
Fwd: Samba 4 two DCs no matching UID/GID
---------- Forwarded message ---------- From: Dania Ramirez Moya <dania181087 at gmail.com> Date: Fri, 9 Jan 2015 12:12:18 -0500 Subject: Samba 4 two DCs no matching UID/GID To: samba <samba at lists.samba.org> Hello list: I have a install of two Debian7 machines with samba 4.1.7. On DC1 I made a domain provision with --use-rfc2307. On DC2 I made a join as DC exactly as