Matt Sergeant

Results 34 comments of Matt Sergeant

> Running Haraka under root is an extremely bad idea Not true. It was designed specifically to allow it. For now just chown the queue directory. Is it possible you...

It's probably something simple like dot stuffing.

Gotcha. Should be an easy fix.

I haven't, no.

I don't think that PR will actually fix it - I don't think @andris9 's summary is correct here, as we pipe the data into a MessageStream object, which does...

I think you can do a plugin that does `connection.set('local.host', VALUE_HERE)` On Fri, Mar 26, 2021 at 5:57 PM Denis Podkopaev ***@***.***> wrote: > === Trying localhost:25... === Connected to...

bodytext is considered to be decoded, not what was sent in the email. It could have been base64 or qp encoded, and in a different character set, so there's no...

But it's also decoded from whatever encoding was used to utf-8, so it's explicitly NOT exactly the bytes received. On Wed, Oct 11, 2017 at 11:36 AM, Andrew Theken wrote:...

There's no guarantee that round-tripping encodings produces the same bytes. There are different ways of representing the same characters in unicode. All I'm saying is that to expect bodytext to...

I'd support an option that says: bodytext should be the raw encoded data (encoding AND \r\n status). So you'd do something like: transaction.parse_body = true; transaction.parse_body_raw = true; And then...