Invalid Header

2005-04-18 Thread Vernon A. Fort
My setup is FC3 with postfix + cyrus-2.2.10-3. I had several messages in the queue stating "Invalid header". After searching for hours, I attempted to save the message using postcat so I could see what part of the header was invalid. There was/is a line: Message-ID: with nothing

Invalid Header problems

2009-07-28 Thread Oscar Cruz
Hi folks i'm trying to figure out a problem with some domains when they send mails to my server *cyrus reports an error*, apparently the problem comes from an invalid header but i don't know what kind of parameter must change, cause this isn't happens with all the domains just

Re: Invalid Header

2005-04-18 Thread Kevin P. Fleming
Vernon A. Fort wrote: so I could see what part of the header was invalid. There was/is a line: Message-ID: with nothing after the line. I removed the line and re-sent the message successfully. Why would single line called Message-ID: cause lmtpd message header errors? Because it's invalid s

Re: Invalid Header

2005-04-18 Thread Michael Loftis
--On Monday, April 18, 2005 15:10 -0500 "Vernon A. Fort" <[EMAIL PROTECTED]> wrote: My setup is FC3 with postfix + cyrus-2.2.10-3. I had several messages in the queue stating "Invalid header". After searching for hours, I attempted to save the message using postcat s

Re: Invalid Header

2005-04-18 Thread Henrique de Moraes Holschuh
On Mon, 18 Apr 2005, Michael Loftis wrote: > >Please point me to some RFC or documentation. I need to present to the > >higher-UPS a decent explanation on why this message took 6 hours to get > >delivered. Now that you have it, make sure they get the idea that they should deep-fry whomever is res

Message contains invalid header

2006-10-25 Thread Marten Lehmann
Hello, from time to time we are getting this message in our exim logs: LMTP error after end of data: 554 5.6.0 Message contains invalid header I have also experienced this error while I'm syncing emails from an old server to our new cyrus mailserver. I have munge8bit: false

Re: Invalid Header problems

2009-07-29 Thread Joseph Brennan
Google is your friend. Notice that a Message-ID header exists but has no string after the label: Jul 28 09:45:10 boom3 postfix/cleanup[6921]: B9A7225C001: message-id= See http://archives.neohapsis.com/archives/postfix/2005-02/1410.html Joseph Brennan Lead Email Systems Engineer Columbia Uni

Message contains invalid header

2005-06-09 Thread User Siggi
I'm having the following problem. If someone could tell me why this error occurs I would be most thankful. Platform is Mac OSX Server 10.4.1. relay=cyrus, delay=1, status=bounced (data format error. Command output: john: Message contains invalid header ) This being the message's

"Message contains invalid header"

2005-08-24 Thread Etienne Goyer
ssage contains invalid header". Looking at the message source, I can see that this message have an SMTP envelope header "From blabla..." at the top. I guess that this is the problematic header. Is this the case ? If yes, is there a workaround ? What is really mystifying me is tha

Re: Message contains invalid header

2006-10-25 Thread Adam Stephens
Marten Lehmann wrote: Hello, from time to time we are getting this message in our exim logs: LMTP error after end of data: 554 5.6.0 Message contains invalid header I have also experienced this error while I'm syncing emails from an old server to our new cyrus mailserver. I have mung

Re: Message contains invalid header

2006-10-25 Thread Simon Matter
> Marten Lehmann wrote: >> Hello, >> >> from time to time we are getting this message in our exim logs: >> >> LMTP error after end of data: 554 5.6.0 Message contains invalid header >> >> I have also experienced this error while I'm syncing emails

Re: Message contains invalid header

2006-10-25 Thread Marten Lehmann
Hello, sorry, but I'm not looking for a way to change anything in an email, I am looking for a way so that Cyrus doesn't check for such errors and simply ignores them. Even if I would remove the according message ids in new messages, I still have to migrate the old mailboxes and IMAP is givi

Re: Message contains invalid header

2006-10-26 Thread Marten Lehmann
Hello, If it's mails from the broken Lotus Notes client that's the problem (and they're the only ones we saw here), it's caused by a null Message-ID header; just have your SMTP server remove those. no, it is not just at mails from Notes clients. I also get this error on messages with correct

Re: Message contains invalid header

2006-10-26 Thread Andrew Morgan
On Thu, 26 Oct 2006, Marten Lehmann wrote: Hello, If it's mails from the broken Lotus Notes client that's the problem (and they're the only ones we saw here), it's caused by a null Message-ID header; just have your SMTP server remove those. no, it is not just at mails from Notes clients. I

Re: Message contains invalid header

2006-10-26 Thread Marten Lehmann
Hello, What MTA do you use? 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. Regards Marten Cyrus Home Page: http://cyrusimap.web.cmu.edu/ Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twik

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: 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: Message contains invalid header

2006-10-27 Thread Andrew Morgan
e IMAP_MESSAGE_BADHEADER: prot_printf(pout, "554 5.6.0 Message contains invalid header\r\n"); break; Andy Cyrus Home Page: http://cyrusimap.web.cmu.edu/ Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html

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 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: 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

Re: Message contains invalid header

2006-10-30 Thread Andrew Morgan
On Sat, 28 Oct 2006, Marten Lehmann wrote: 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

delivery: Message contains invalid header

2007-02-28 Thread Sergey Matveychuk
Hello. I've got a problem with delivery(1). When I try to use it with exim to place messages to mail boxes I get 'Message contains invalid header' error almost for every message. When I use LMTP transport, cyrus works just fine and deliveries any message. I don't understa

Re: Message contains invalid header

2005-06-09 Thread Peter A. Friend
utput: john: Message contains invalid header ) This being the message's header. I changed some of the addresses: Received: from sendmail.company.com (sendmail.company.com [130.208.xxx.xxx]) by mx1.company2.com (Postfix) with ESMTP id B75CB19B52F for <[EMAIL PROTECTED]>;

Re: "Message contains invalid header"

2005-08-24 Thread Andrew Morgan
folder, he receive an error "Message contains invalid header". Looking at the message source, I can see that this message have an SMTP envelope header "From blabla..." at the top. I guess that this is the problematic header. Is this the case ? If yes, is there a workaroun

cyrdeliver error: Message contains invalid header

2003-09-12 Thread Miham KEREKES
Hi, I'm trying to set up cyrus-imap with exim4. Exim4 does smtp-time virus and spamscan, and then calls cyrdeliver with arg username. The only error is, that cyrdeliver always complaining about: "Message contains invalid header", and the message doesn't get delivered. ma

Re: delivery: Message contains invalid header

2007-02-28 Thread Sergey Matveychuk
Sergey Matveychuk wrote: > Hello. > > I've got a problem with delivery(1). When I try to use it with exim to Not delyvery(1), but deliver(8). Sorry, I was hurry. And now I've discovered the behaviour was introduced in 2.3.8. 2.3.7 works fine. -- Sem. Cyrus Home Page: http://cyrusimap.web.c

error message "message contains invalid header"

2005-02-03 Thread Stefan Palme
When moving some messages, the mail-client responds with a error. We have enabled per account log files from the imap-server. But in there is the same non-sense error: [Message contains invalid header] If you belive a header is invalid, then why don't you include the name in the error me

Re: cyrdeliver error: Message contains invalid header

2003-09-12 Thread Pat Lashley
Message contains invalid header", and the message doesn't get delivered. This probably isn't really relevant to the problem you are seeing; but why are you using cyrdeliver instead of directly talking to lmtpd? Here are the router and transport that I use: cyrus:

Re: cyrdeliver error: Message contains invalid header

2003-09-13 Thread Tom
On Fri, 12 Sep 2003, Miham KEREKES wrote: > Hi, > > I'm trying to set up cyrus-imap with exim4. Exim4 does smtp-time virus > and spamscan, and then calls cyrdeliver with arg username. > The only error is, that cyrdeliver always complaining about: > "Message conta

Testing: Exim, Cyrus and invalid header lines

2011-09-07 Thread Anthony Tibbs (Trinimex)
having an invalid header. Now testing to see what the cause is. I've managed to get Exim to strip blank Message-ID: headers, which I know Cyrus doesn't like much, but I'm not sure that is it. Why does Cyrus have to be so fussy? (Watch, this message will come back to me just fi

long lines in body causes "Message contains invalid header"

2004-05-27 Thread Maarten de Boer
) Investigating the logs, I found that cyrdeliver caused a error: "Message contains invalid header" Exim (I call cyrdeliver from exim) bounced the message to inform the sender that the message could not be delivered, but when the bounced message arrived at cyrdeliver, the same error occured. T

Re: long lines in body causes "Message contains invalid header"

2004-05-27 Thread Henrique de Moraes Holschuh
On Thu, 27 May 2004, Maarten de Boer wrote: > Exim (I call cyrdeliver from exim) bounced the message to inform the Fix it so that it does not include bogus messages in a DSN directly, but rather as an encoded attachment. > The message contains an attachment with a very long line (an XML file > wi

Re: long lines in body causes "Message contains invalid header"

2004-05-27 Thread Maarten de Boer
rvice Extensions. So indeed, it seems the mail is not well formatted. The question that remains is how cyrus should deal with it... An "invalid header" error seems a bit strange. Maarten --- Cyrus Home Page: http://asg.web.cmu.edu/cyrus Cyrus Wiki/FAQ: http://cyruswiki.andrew.cmu.edu List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html

lmtp over tcp sockets, access denied and lmtp error: Message contains invalid header

2006-07-21 Thread Rudy Gevaert
character is '^]'. 220 mail2.ugent.be LMTP Cyrus v2.3.7 ready LHLO foo.edu 250-mail2.ugent.be 250-8BITMIME 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-SIZE 250-AUTH EXTERNAL 250 IGNOREQUOTA mail from:<[EMAIL PROTECTED]> 250 2.1.0 ok rcpt to:<[EMAIL PROTECTED]> 250 2.1.5 ok DATA 35

Re: lmtp over tcp sockets, access denied and lmtp error: Message contains invalid header

2006-07-21 Thread Rodrigo Ventura
On Friday 21 July 2006 14:32, Rudy Gevaert wrote: > mail from:<[EMAIL PROTECTED]> > 250 2.1.0 ok > rcpt to:<[EMAIL PROTECTED]> > 250 2.1.5 ok > DATA > 354 go ahead > daf > da > > > af > . > 554 5.6.0 Message contains invalid header > > How d

Re: lmtp over tcp sockets, access denied and lmtp error: Message contains invalid header

2006-07-21 Thread Pascal Gienger
head daf [...] . 554 5.6.0 Message contains invalid header That is normal. "daf" is not an allowed mail header. You seem to have configured 2003 as your lmtpd port in your /etc/services of your cyrus host. Does lmtp use the same port? Pascal Pascal Cyrus Home

Re: lmtp over tcp sockets, access denied and lmtp error: Message contains invalid header

2006-07-21 Thread Rudy Gevaert
Pascal Gienger wrote: You seem to have configured 2003 as your lmtpd port in your /etc/services of your cyrus host. Does lmtp use the same port? Stupid me. I did not have the lmtp line in my /etc/services on the mailrelay host. Thanks for the help! Cyrus Home Page: http://asg.web.cmu.

Re: lmtp over tcp sockets, access denied and lmtp error: Message contains invalid header

2006-07-21 Thread Rudy Gevaert
Rodrigo Ventura wrote: After the DATA command you should enter the header fields in RCF??? format, followed by a empty line, followed by the actual data. For instance: thanks for pointing this out. I read in the rfc that lmtp use the same protocol als smtp (with a couple of exceptions) but