iRedMail
iRedMail
Dear all, I recently got an email in such format, main content-type is `multipart/mixed`, one of the part in body is text/plain with `Content-Transfer-Encoding: quoted-printable`, it contains HTML code and...
Dear @jhillyerd, Mail headers stored in `header` attribute is unordered (the [underlying type of `*textproto.MIMEHeader` is `map[string][]string`](https://pkg.go.dev/net/textproto#MIMEHeader)): https://github.com/jhillyerd/enmime/blob/5cd80012a864d71e2fe03bae39079080a4896160/envelope.go#L28 I wonder whether you're willing to accept PR to make it an...
Dear developer(s), I wonder any plan to support Korean? Thanks. :)
Let's say we have a macro like this: ``` {% macro greetings(to, from=name, name2="guest") %} ... {% endmacro %} ``` Currently we can only call it like this (copied from...
1. Methods of `Session` interface have to return `smtp.SMTPError{...}` to customize returned smtp code and message. Although it's ok to set smtp code `250` for normal exit with `SMTPError{...}`, but...
As a normal user, i expect the official document site is built with the spectre css itself without a lot customization. But the site has custom style `docs.min.css` (with many...
- 老调重弹:去掉 `register()`。还没人用 V 和 valval,真没必要在这个阶段考虑向后兼容的问题。 - route 的部分,是否将 http method 从 url 里剥离出来?现在将 http method 直接写进了 url 里,导致在处理的时候还要从字符串里剥离出 http method,多了一个字符串处理的工作。 ``` app.route('POST:/book', function3) // http://127.0.0.1/book by POST app.route('DELETE:/book', function4)...
I use ssh tunnel as upstream sock5 server, and polipo will always forward all requests to upstream. this causes access to local network (e.g. `172.16.100.x`, `192.168.0.x`) goes through ssh tunnel....
Dear all, Just want to share with you that we're developing a new [milter](https://www.postfix.org/MILTER_README.html) program to replace iRedAPD, so don't feel sad if not many commits here. ### Why? iRedAPD...
In project README file: > There is additional information in the INSTALL and FEATURES files ... But where is this INSTALL file? I cannot find it in this github repo.