Displaying 20 results from an estimated 1900 matches similar to: "Stumped on adding X-Header..."
2007 Apr 23
2
mbox bug in 1.0.0
Hi folks. We're moving users from rc24 and 27 to 1.0.0. On four mailboxes
so far we've seen these errors after the move (quick and dirty anonymizing
follows):
Apr 23 13:22:41 server.umn.edu dovecot: [ID 107833 local6.info] imap-login:
Login: user=<USER>, pid=<9046>, method=PLAIN, rip=***.***.***.***,
lip=***.***.***.***, TLS
Apr 23 13:22:41 server.umn.edu dovecot: [ID
2007 Aug 01
2
mbox inbox default
HI Timo & all.
We're an mbox environment, inboxes in /var/mail/$USER (I'll include dovecot
-n output at the bottom of this mail). mail_location is set accordingly for
deliver.
I'd assumed that if the /var/mail/$USER file doesn't exist, dovecot would
create it, but we've discovered from experience (and I verified it in
mbox-storage.c) that if access(path, R_OK|W_OK)
2005 Aug 22
2
Re: Dovecot inotify problem
Hi Reuben,
I hope you don't mind me copying the dovecot list again.
> dovecot: Aug 21 04:08:22 Error: IMAP(reuben): inotify_rm_watch() failed:
> Invalid argument
Odd.
> This is with a 2.6.13-rc6-mm1 release. I've posted to LKML because there is
> also a kernel stack produced at one point which looks inotify related (but the
> messages above are contant).
> See
2007 Jun 18
2
LSUB/SUBSCRIBE under namespaces
Hi folks.
Here's our situation: Migrating from UW-IMAP. Have lots (as in, tens of
thousands) of clients set up using '~/mail' as the IMAP root, and using
subscriptions.
Dovecot mail_location is using '~' for mbox storage. We've disabled full
filesystem access in Dovecot in order to use ACLs for shared folders. Hence
we have a hidden namespace for backwards
2009 Mar 24
1
Making changes to dovecot log levels
Hi Timo,
Awhile back I'd written about making changes to some of the log levels
that dovecot writes to to stop the process from writing these to monitor.
I wanted to run a few changes by you for this, just to make sure these
won't cause problems somewhere else. And to send this to the list, in
case anyone else wants to make similar changes in the future.
In the file
2003 Apr 16
1
PATCH Add support for kqueue in ioloop subsystem
Hey,
I noticed that there was an ioloop "module" (if we can call it that) for
select and poll and decided to add one for kqueue (aka kevent) BSDs high
performance descriptor multiplexing API. I haven't done any of the
configure glue stuff but the code is complete and works well. kqueue is
available on all recent versions of FreeBSD, NetBSD, OpenBSD and Darwin
(and therefore MacOS
2015 Feb 03
2
[LLVMdev] OrcJIT in LLVM C bindings
Thanks, David.
I'd be happy to add the bindings .. is there a general way we add them? Or
do you just scrub the API and make sensible judgements to the API?
On Sun, Feb 1, 2015 at 1:55 PM, David Blaikie <dblaikie at gmail.com> wrote:
>
>
> On Sun, Feb 1, 2015 at 10:58 AM, Hayden Livingston <halivingston at gmail.com
> > wrote:
>
>> Hello,
>>
>> I
2006 Jun 01
1
ssl-proxy: client certificates and crl check
Skipped content of type multipart/alternative-------------- next part --------------
--- ssl-proxy-openssl.c.orig 2006-04-04 10:32:58.000000000 +0200
+++ ssl-proxy-openssl.c 2006-06-01 09:24:57.000000000 +0200
@@ -498,7 +498,7 @@
const char *ssl_proxy_get_peer_name(struct ssl_proxy *proxy)
{
X509 *x509;
- char buf[1024];
+ char buf[256];
const char *name;
if
2002 Jul 09
1
ext3 file corruption
I recently patched our 2.2.20 production kernel with the ext3 patch from
kernel.org and have experienced failure on more than one account.
Everything seems to run great until the power goes out and the box isn't
shutdown correctly. After that files are missing and the box won't boot.
All of the partitions were mounted ext3 ordered mode I think. Anyone else
experience filesystem
2019 Jan 14
3
[FTS Xapian] Beta release
Testing a compile on FreeBSD.
gmake[2]: Entering directory '/usr/home/wash/Tools/Dovecot/fts-xapian/src'
/bin/sh ../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I.
-I.. -I/opt/dovecot2.3/include/dovecot
-I/opt/dovecot2.3/include/dovecot -g -O2 -MT fts-backend-xapian.lo -MD
-MP -MF .deps/fts-backend-xapian.Tpo -c -o fts-backend-xapian.lo
fts-backend-xapian.cpp
libtool:
2015 Oct 13
2
TLS communication director -> backend with X.509 cert checks?
On 14 Oct 2015, at 00:34, Heiko Schlittermann <hs at schlittermann.de> wrote:
>
> Hi Timo,
>
> Heiko Schlittermann <hs at schlittermann.de> (Di 13 Okt 2015 22:33:23 CEST):
>>> Does the attached patch work? Compiles, but untested.
>> I'm about to test it.
>
> It seems to update the struct mail_host, but it looks as if the data
> in mail_host
2009 Apr 13
0
How can I skip EOH in headers?
Hello.
My callback for get_stream is called from mail_get_stream in
mail_storage_copy. Further, mbox_save_init is called and it called
mbox_save_get_input_stream.
backtrace (A) for my callback:
#0 i_stream_header_filter_read (stream=0x8147e00) at istream-header-
filter.c:314
#1 0x080cdbaa in parse_header (mstream=0x8147e00) at istream-header-
filter.c:356
#2 0x080cdc0c in
2019 Jan 12
2
Solr -> Xapian ?
I somehow fixed the folder issue. (seems some unix rights after too many
tests)
Getting back on the "fts_results" structure:
I am trying:
I_ARRAY_INIT(&(RESULT->DEFINITE_UIDS),R->SIZE);
I_ARRAY_INIT(&(RESULT->MAYBE_UIDS),0);
uint32_t uid;
for(i=0;i<r->size;i++)
{
try
{
2015 Mar 14
3
[LLVMdev] stability of llvm ir across releases
Are you saying the textual form of IR can change, but bitcode doesn't? I
don't know what you mean by assembly syntax.
Is there a changlog entry when the textual IR changes?
On Sat, Mar 14, 2015 at 5:22 AM, Jeremy Lakeman <Jeremy.Lakeman at gmail.com>
wrote:
> Assembly syntax can and will break between versions. But bitcode should
> generally be upgradeable, or a bug should
2015 Feb 01
3
[LLVMdev] OrcJIT in LLVM C bindings
Hello,
I was wondering if there is someone already working on putting the new
OrcJIT APIs in the LLVM-C bindings?
Also, is there a general consensus to also add C bindings when new major
features are added?
Hayden
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150201/061f5949/attachment.html>
2012 Jun 21
3
Exporting data from R into an Excel File on Mac
Dear R Professionals,
I am currently an intern at the University of Rhode Island and I need to
know how to export data from R into an Excel file. As it is my
understanding, xlsReadWrite is not available for mac. Is there another
package available for mac users to be able to perform this function.
Sincerely,
Maureen J Hayden
University of Rhode Island
Class of 2015
Marine Biology Major
2015 Jul 01
2
[LLVMdev] Are global variables candiates for register allocation?
Right, I follow your theory and thought the same.
I have a single TU scenario where the global is just used because we
generate hand assembly at runtime, and want to keep the code written
by hand to be super simple, calls with no parameters. Our scenario is
literally reading a file, which calls this functions hundreds of
thousands of times, and we reset the pointer to the "global"
2005 May 19
2
Two TDM04 with Poweredge
Has anyone on this list succesfully managed to get two (or more) TDM04
(with four FXO each) working on a Dell PowerEdge server? If so, which
model? Was it a hassle? I'm doing a seven-line installation and a
callbank seems like overkill, I just don't want to get suck with a
PowerEdge that gets into an IRQ mess.
Thanks in Advance,
Tom Hayden
2015 Mar 14
2
[LLVMdev] stability of llvm ir across releases
Is it safe to assume that LLVM IR will live more-or-less the same for most
releases, and that significant changes will be communicated?
Or is it something that can change at any time and you must not rely on it
ever being same.
To me, it seems like the IR has evolved slowly but no spectacularly large
changes were made in the 1-1.5 years I've been watching it, -- sure some
experimental patch
2013 Jun 06
2
Blog: Installing the Xen hypervisor on Fedora 19
Saw this post from Major Hayden of Rackspace:
http://major.io/2013/06/02/installing-the-xen-hypervisor-on-fedora-19/
It''s good to see posts like this "in the wild" (i.e., originating from a
non-XenProject site).
Russ
_______________________________________________
Xen-users mailing list
Xen-users@lists.xen.org
http://lists.xen.org/xen-users