-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "-i" to sendmail's pipe #39607
Add "-i" to sendmail's pipe #39607
Conversation
96f8cea
to
da46b0b
Compare
Hello, do I need to do something? |
Hi team, Thanks |
TL;DR I agree that I'm wondering if what's happening is a one (or both) of:
My money is on the second being more common. The balance - probably the bulk since this would be a much more widely reported otherwise I'd imagine - are handling things just fine without Bottom line: It's completely reasonable to run IMO: Since our aim should be compatibility (and as deterministic as possible outcomes) we should:
Ideally, documentation also gets a minor addition in the Server Requirements or Email Configuration section: e.g. If using pipe mode we'll be invoking the installed sendmail binary (genuine or compatible). We expect the called sendmail binary to fully support the following conventional sendmail compatible options: All that said: There may yet be further reports of issues like this (but hopefully fewer). My recollection from my email server days is that the only dot Still same conclusion: we should send I offered you the TL;DR. You didn't have to read this far. 😇 Related: symfony/symfony#50875 (comment) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/update-3rdparty |
bd74dbd
to
f22b973
Compare
Thank you 👍 |
f22b973
to
fd27115
Compare
No idea why the cypress tests keep failing for this PR.
|
|
Signed-off-by: FedericoHeichou <federicoheichou@gmail.com>
Signed-off-by: FedericoHeichou <federicoheichou@gmail.com>
fd27115
to
609e751
Compare
Thanks for your first pull request and welcome to the community! Feel free to keep them coming! If you are looking for issues to tackle then have a look at this selection: https://github.com/nextcloud/server/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22 |
/backport to stable28 |
/backport to stable27 |
/backport to stable26 |
Summary
Symfony Mailer replaces
"\n."
with"\n.."
.If the email to be sent contains links when they are breaklined a line may start with a
.
, thus can generating a URL likehttps://www..example.com/[...]
orhttps://www.example.com/index..php/[...]
.With "-i" this replacement is not performed.
Checklist