Re: GSSAPI: A token had an invalid MIC

2006-10-27 Thread Wesley Craig
On 27 Oct 2006, at 22:35, Phil Pennock wrote: New server: OS/Arch: FreeBSD 6.1 / amd64 Cyrus IMAPd: 2.3.7 Cyrus SASL 2.1.22 OpenSSL: 0.9.7i Heimdal: 0.7.2 (OS port rev _1) Anyone any ideas or pointers, please? Given the versions of things, I'd suspect one or both of these two problems:

Re: Deferred email with remote protocol error in reply

2006-10-27 Thread Wesley Craig
On 27 Oct 2006, at 16:00, Henrique de Moraes Holschuh wrote: That said, just moving off 0,1,2 is not difficult. ... The ideal fix would be to have them be dynamic. Ideally, 0, 1, and 2 should be reserved for stdin, stdout, and stderr. In an environment where std* don't make sense, i.e.,

Re: Cyrus, clusters, GFS - HA yet again

2006-10-27 Thread Marten Lehmann
Hello, maybe I have understood GFS wrong, but isn't it ment to stripe data of several servers instead of mirroring them but make it accessable from several servers? If one server goes down, then you can only access the metadata from the GFS metadata server, but not the file itself from the se

GSSAPI: A token had an invalid MIC

2006-10-27 Thread Phil Pennock
I'm having a problem with GSSAPI on a new install of Cyrus IMAP, where no clients are able to successfully negotiate a connection; my own client code is reporting "A token had an invalid MIC", GSS_S_BAD_MIC, when trying to unwrap the data in the GSSAPI context, so it's not getting the server's toke

Re: Message contains invalid header

2006-10-27 Thread Marten Lehmann
Hi, case IMAP_MESSAGE_BADHEADER: prot_printf(pout, "554 5.6.0 Message contains invalid header\r\n"); break; what can I do to fix these headers? I have one message (which appears to be spam, but that is not the point), where I cannot find any problem. No 8bit characters, n

Re: recover from hard restart

2006-10-27 Thread Phil Pennock
On 2006-10-27 at 14:39 -0400, Benjamin Adams wrote: > cyrus.cache.NEW > cyrus.index.NEW > > And their mail clients are not working correctly. > How can I fix this without taking the server down? Reconstruct those folders. See reconstruct(8) -- the command cleans this up. -- "Everything has thre

Re: recursive reconstruct does not work?

2006-10-27 Thread Jo Rhett
Ken...? Haloo. On Oct 12, 2006, at 12:04 PM, Jo Rhett wrote: Ken, any news on this? I could swear we talked about this a few years ago. Sorry for the absence, got bought out and stuck with old mobx UW-IMAP for a few years :-( Andreas Winkelmann wrote: Am Wednesday 04 October

Re: recursive reconstruct does not work?

2006-10-27 Thread Ken Murchison
Recursive reconstruct should and does work AFAIK. Are you trying to reconstruct an entire domain, multiple domains, or ... ? Jo Rhett wrote: Ken...? Haloo. On Oct 12, 2006, at 12:04 PM, Jo Rhett wrote: Ken, any news on this? I could swear we talked about this a few year

Re: virtual domains

2006-10-27 Thread Jo Rhett
On Oct 26, 2006, at 11:00 PM, A Clockwork Orange wrote: Cyradm can not create virtual mailbox! Why? localhost.strs.ru> cm [EMAIL PROTECTED] createmailbox: Permission denied localhost.strs.ru> Please try some self-help before you ask us to fix your problems for you. "Permission denied." pr

Re: Sieve Vacation not working (filter does work)

2006-10-27 Thread Jo Rhett
Did you enable the mailto method in imapd.conf? Without this enabled, all of the functions that send mail are disabled. -- Jo Rhett Senior Network Engineer Network Consonance Cyrus Home Page: http://cyrusimap.web.cmu.edu/ Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki List Archives/I

Re: Cyrus started

2006-10-27 Thread Jo Rhett
On Oct 26, 2006, at 11:12 PM, A Clockwork Orange wrote: Where are these error from? I tried to set 777 for /var/imap. It did not help. Please investigate commercial support options before you hurt yourself. Seriously. -- Jo Rhett Senior Network Engineer Network Consonance Cyrus Home

Re: Deferred email with remote protocol error in reply

2006-10-27 Thread Henrique de Moraes Holschuh
On Fri, 27 Oct 2006, Wesley Craig wrote: > On 27 Oct 2006, at 15:33, Henrique de Moraes Holschuh wrote: > >Cyrus master has issues with FDs 0,1 and 2 since ancient times. If > >anything > >in the code, anywhere, closes them and don't reopen them immediately, > >something like syslog() or another

Re: Deferred email with remote protocol error in reply

2006-10-27 Thread Henrique de Moraes Holschuh
On Fri, 27 Oct 2006, Wesley Craig wrote: > The larger problem is that daemons shouldn't be impacted by libraries > that inappropriately write to stdout or stderr. As such, lmtpd > should have closed stdin, stdout, stderr and reopening them with, > e.g., '/', O_RDONLY. Accepted connections s

Re: Deferred email with remote protocol error in reply

2006-10-27 Thread Wesley Craig
On 27 Oct 2006, at 15:33, Henrique de Moraes Holschuh wrote: Cyrus master has issues with FDs 0,1 and 2 since ancient times. If anything in the code, anywhere, closes them and don't reopen them immediately, something like syslog() or another offender will promptly take them over and cause a

recover from hard restart

2006-10-27 Thread Benjamin Adams
I had a server hard restart, and some users (looks like just the ones login) have this now:cyrus.cachecyrus.cache.NEWcyrus.headercyrus.indexcyrus.index.NEWAnd their mail clients are not working correctly.How can I fix this without taking the server down?Thanks.Ben Cyrus Home Page: http://cyrus

Re: Message contains invalid header

2006-10-27 Thread Henrique de Moraes Holschuh
On Fri, 27 Oct 2006, Marten Lehmann wrote: > especially this appears very often. Does Cyrus actually mean the whole > message, or message body or header? What can I do with existing messages? Last time I had a problem like this, I piped them all through tr -d '\000'. Nowadays, postfix is set to r

Re: Deferred email with remote protocol error in reply

2006-10-27 Thread Wesley Craig
On 27 Oct 2006, at 05:08, Libor Pechacek wrote: MAIL FROM:<[EMAIL PROTECTED] > SIZE=15311 RCPT TO:<[EMAIL PROTECTED] > DATA < 250 2.1.0 ok < 250 2.1.5 ok < 354 go ahead . < 7 lockers In this case the obvious reason for the error is the

Re: Message contains invalid header

2006-10-27 Thread Marten Lehmann
Hello, case IMAP_MESSAGE_CONTAINSNULL: prot_printf(pout, "554 5.6.0 Message contains NUL characters\r\n"); break; especially this appears very often. Does Cyrus actually mean the whole message, or message body or header? What can I do with existing messages? Regards Mart

Re: Message contains invalid header

2006-10-27 Thread Andrew Morgan
On Fri, 27 Oct 2006, Marten Lehmann wrote: Hello, But your Cyrus IMAPd has to work with these headers! It has to be able to sort by date, search for message ID, index the body, search for any header field! So you cannot just ignore errors in Cyrus. yes, I understand. But I don't know which c

Re: Cyrus started

2006-10-27 Thread Andrew Morgan
On Fri, 27 Oct 2006, A Clockwork Orange wrote: Oct 27 10:08:58 mow master[17342]: process started Oct 27 10:08:58 mow master[4984]: about to exec /usr/local/libexec/cyrus-imapd/ctl_cyrusdb Oct 27 10:08:59 mow ctl_cyrusdb[4984]: recovering cyrus databases Oct 27 10:09:03 mow ctl_cyrusdb[4984]: d

Re: Message contains invalid header

2006-10-27 Thread Marten Lehmann
Hello, But your Cyrus IMAPd has to work with these headers! It has to be able to sort by date, search for message ID, index the body, search for any header field! So you cannot just ignore errors in Cyrus. yes, I understand. But I don't know which characters are problematic for Cyrus. I just

Re: Cyrus, clusters, GFS - HA yet again

2006-10-27 Thread Dave McMurtrie
Janne Peltonen wrote: And if further splitting of users on more servers is needed - downtime again. Moreover, it's confusing for the users to have to determine their correct imap server name - we haven't really had trouble with this, but it would be nice if the users saw a unified system image.

Cyrus, clusters, GFS - HA yet again

2006-10-27 Thread Janne Peltonen
Hi list. Sorry for the long post. I hope someone has time to read it and shed some light on my concerns. This all boils down to one question: those that have succeeded in running active-active Cyrus cluster configs, how have you done it? So. Some background: I inherited a university imap system

Re: Deferred email with remote protocol error in reply

2006-10-27 Thread Libor Pechacek
Andreas Winkelmann wrote: > Am Friday 15 September 2006 04:52 schrieb Hardi Gunawan: > >> My email server experiencing a delivery problem. >> Here's the log: >> relay=/var/lib/imap/socket/lmtp[/var/lib/imap/socket/lmtp], >> delay=0, status=deferred (remote protocol error in >> reply from >> /var/l

Re: Message contains invalid header

2006-10-27 Thread Daniel Eckl
On 26.10.2006 23:57, Marten Lehmann wrote: > exim. It can handle even emails with NUL characters and 8bit headers, > but I guess all up2date MTAs (like postfix or sendmail) are capable of > this. Well, that's a bad comparison between MTA and your mail storage! A MTA normally doesn't care about the

Re: Sieve Vacation not working (filter does work)

2006-10-27 Thread Georg Glas
Martin Schweizer schrieb: > Did you use umlauts or other non 8 bit characters in the vacation text > (that was my problem at the beginning)? >> the script itself is really simple: >> >> require "vacation"; >> vacation :days 7 :addresses [ "[EMAIL PROTECTED]", "[EMAIL PROTECTED]"] "Out >> of >> of