similar to: dovecot.pid

Displaying 20 results from an estimated 100 matches similar to: "dovecot.pid"

2007 Jun 29
1
Monitoring Recomendations
I have a client that I have installed Dovecot 1.0.1 for is having some performance issues. Especially when using IMAP from various Outlook clients. I have TLS installed and all the IMAP connections are secured. I'm wondering is anyone has any recommendations for monitoring dovecot performance. I'd like to try and nail down where the real performance issues are. I suspect
2007 Sep 25
1
Password auth with Postfixadmin & MySQL
I am trying to get Postfix, Dovecot, Postfixadmin, and MySQP all working together. I'm using 1.0.5 atm. I've hit a point where I can't seem top get dovecot to auth to the MySQL password database It seems to see the user OK, but I can't seem to get a password match. MySQL has password stored as MD5, as per Postfixadmin. When I add plain-md5 to the auth mechanisms dovecot
2019 Aug 09
2
Trouble with ORCv2 Tutorial
HI Lang, Thanks a bunch for the reply. That worked great for on my end and is a pretty tiny change. Really appreciate all the work you've done on this new JIT stuff and putting together those great tutorials. Zeke On Thu, Aug 8, 2019 at 3:07 PM Lang Hames <lhames at gmail.com> wrote: > > Hi Zeke, > > Thanks for pointing this out. > > You're right: the issue is
2019 Aug 08
2
Trouble with ORCv2 Tutorial
Hi Praveen, Thanks for pointing that out :) That's my mistake. I might have been misidentifying the issue with the assert statement. With those fixes made function calls seem to all call the first function called in the REPL. For example: ready> def fib(n) if (n < 2) then n else fib(n - 1) + fib(n - 2); ... ready> fib(40); Evaluated to 102334155.000000 ready> fib(10); # This
2019 Aug 07
2
Trouble with ORCv2 Tutorial
Hi folks, I'm working on migrating a JIT compiler from the old ORCv1 JIT APIs to the newer ORCv2 ones and am having some trouble getting the code from chapter 1 of the "Building a JIT" [1] tutorial working properly. I have previously walked through the "My First Langauge" [2] tutorial and that went smoothly using the provided JIT class, but using the one from the JIT
2007 Jul 06
1
Your IMAP server has closed the connection.
I'm getting a large number of ... "Your IMAP server has closed the connection. This may occur if you have left the connection idle for too long." errors. These are confusing my clients. Is there a way to set the timeout on the dovecot server to help avoid this?
2009 Aug 03
1
Weird Network issue
Hi all: I am pretty new to xen, but ,thanks to you, I am learning fast :) I have a Dell Poweredge 2950 server running Debian Lenny as Dom0 named Asgard I have configured three DomU (Loki, Hermod and Thor) with DHCP support. All the machines (Dom0 and DomU''s) ask for an IP address to a DHCP server in the Office LAN. The DHCP server is configured to bind certain IP addresses to the Dom0
2008 Apr 25
3
DO NOT REPLY [Bug 5418] New: rsync error: error allocating core memory buffers (code 22)
https://bugzilla.samba.org/show_bug.cgi?id=5418 Summary: rsync error: error allocating core memory buffers (code 22) Product: rsync Version: 3.0.2 Platform: Other OS/Version: AIX Status: NEW Severity: major Priority: P3 Component: core AssignedTo: wayned@samba.org
2012 Oct 17
2
Puppet 3.0 and yum groupinstall
I can''t seem to find any direct reference yo this in the puppet 3.0 docs so does anyone know if puppet 3.0 can handle yum groupinstalls without resorting to using an exec? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/5QboggWCwh4J. To
2006 May 08
3
operator overload on views
In my User auth scheme I have a userlevel. I''ve overloaded the User class operators like this: def >(item) if item.class == "User" self.userlevel > item.userlevel else self.userlevel > item end end (other operators are overloaded in essentially the same way). As I understand it, using the operator ">" inside the overloaded
2006 Feb 14
2
Updated task list for Speex
Hi everyone, For all those of you who always wanted to contribute to Speex, but didn't know what to do, I've just updated the list of things that could be done on: http://wiki.xiph.org/index.php/Speex The tasks range from maintaining a FAQ to writing a better perceptual enhancer. Some of the more complex things listed would even make a good university project! If you're interested in
2019 Sep 25
4
Questions after playing around with KaleidoscopeJIT (With source files)
Hello LLVM people, after finishing Chapter 1 and 2 of the KaleidoscopeJIT tutorial, I started to play around with the code and now, I have even more questions than before. I hope that the people reading this could help me with it, to improve my understanding about the LLVM and the JIT. I have also the source code and binaries (Windows) available but because I don't know how the mailing list
2017 Jun 14
1
Reserve ARM register for only section of the program
Hi, Thanks a lot. Is it possible to implement that functionality as a pragma? Ex. .. [code] ... #pragma A .. .. #pragma B .. .. Lets say I want to reserve registers X9 and X10 only within pragma A and B. Is it possible to achieve this in llvm? Thanks Nisal On Mon, Jun 12, 2017 at 9:54 PM, Tim Northover <t.p.northover at gmail.com> wrote: > Hi Nisal, > > (Adding llvm-dev back
2004 Jul 19
2
BroadVoice problems?
Anyone else having problems with inbound Broadvoice this morning? -- Chris Tooley / Network and Development Services Networking Technologies Resource Center, LLC (NTRC) 8650 Spicewood Springs Road, Suite 105 Austin TX 78759 512-250-8985 / Fax 512-250-5909 www.ntrc.net / www.ntrcstore.com
2005 Jul 25
1
order of panels in xyplot
I'm having trouble with the order of the panels using xyplot. I had used this bit of code before and received the desired plot (the code was not identical, but very similar; perhaps more importantly I was working with an older version of R) . Now the panels appear right to left instead of left to right, as it says in the help files, which is what I would like. Does anyone know if this has
2008 Jun 11
1
Page breaks when encoding ogg/theora
Hi everyone, I'm trying to build theora encoding into my game engine. Essentially, I'd like to do something similar to png2theora.c, where I take individual screen shots of my game and encode them into a video. Because png2theora.c uses the legacy C API, I used encoder_example.c as a template instead. encoder_example.c seems to be the only code out there that actually uses the th_* API.
2012 Apr 11
3
[patch] giving library() a 'version' argument
I've made a small enhancement to R that would help developers better control what versions of code we're using where. Basically, to load a package in R, one currently does: library(whateverPackage) and with the enhancement, you can ensure that you're getting at least version X of the package: library(whateverPackage, version=3.14) Reasons one might
2012 May 24
0
[LLVMdev] alloc_size metadata
Hi Nuno, > I'm implementing the alloc_size function attribute in clang. does anyone actually use this attribute? And if they do, can it really buy them anything? How about "implementing" it by ignoring it! Ciao, Duncan. This > attribute exists in gcc since version 4.3. > The attribute specifies that a function returns a buffer with the size > given by the
2008 Apr 04
7
User-specific sshd_config?
Hi. I wonder if it would be possible to implement support for a user-specific sshd_config. The primary reason is that I would like the ability to specify that I'm only allowed to login with a key pair, even though the system-wide sshd configuration still allows passwords for other users. Of course, a user-specific sshd_config file should not be able to break the security policy of the
2020 Aug 11
2
M[cbind()] <- assignment with Matrix object loses attributes
? Does this constitute a bug, or is there something I'm missing? assigning sub-elements of a sparse Matrix via M[X]<-..., where X is a 2-column matrix, appears to drop user-assigned attributes. I dug around in the R code for Matrix trying to find the relevant machinery but my brain started to hurt too badly ... ?? Will submit this as a bug if it seems warranted. library(Matrix) m1