-
-
Notifications
You must be signed in to change notification settings - Fork 71
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
Envelope address passed to sendmail #78
Comments
Can it cause some problems when it will be the default? |
I think not. At least if you do not use some quite non-standard configuration of mail delivery system. But I am not 100% sure. |
We will see :) |
dg
added a commit
that referenced
this issue
Jan 11, 2021
dg
added a commit
that referenced
this issue
Jan 26, 2021
dg
added a commit
that referenced
this issue
Feb 24, 2021
dg
added a commit
that referenced
this issue
Mar 1, 2021
dg
added a commit
that referenced
this issue
Mar 1, 2021
dg
added a commit
that referenced
this issue
Apr 16, 2021
dg
added a commit
that referenced
this issue
Jun 2, 2021
dg
added a commit
that referenced
this issue
Jun 2, 2021
dg
added a commit
that referenced
this issue
Aug 25, 2021
dg
added a commit
that referenced
this issue
Dec 12, 2021
dg
added a commit
that referenced
this issue
Dec 12, 2021
dg
added a commit
that referenced
this issue
Apr 27, 2022
dg
added a commit
that referenced
this issue
Sep 6, 2022
dg
added a commit
that referenced
this issue
Oct 4, 2022
dg
added a commit
that referenced
this issue
Oct 12, 2022
dg
added a commit
that referenced
this issue
Oct 13, 2022
dg
added a commit
that referenced
this issue
Oct 13, 2022
dg
added a commit
that referenced
this issue
Dec 14, 2022
dg
added a commit
that referenced
this issue
Dec 21, 2022
dg
added a commit
that referenced
this issue
Jan 9, 2023
dg
added a commit
that referenced
this issue
Jan 9, 2023
dg
added a commit
that referenced
this issue
Jan 9, 2023
dg
added a commit
that referenced
this issue
Jan 9, 2023
dg
added a commit
that referenced
this issue
Jan 10, 2023
dg
added a commit
that referenced
this issue
Jan 10, 2023
dg
added a commit
that referenced
this issue
Jan 13, 2023
dg
added a commit
that referenced
this issue
Jan 18, 2023
dg
added a commit
that referenced
this issue
Jan 19, 2023
dg
added a commit
that referenced
this issue
Jan 19, 2023
dg
added a commit
that referenced
this issue
Jan 21, 2023
dg
added a commit
that referenced
this issue
Jan 26, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We just encountered increasing undelivered messages rate on certain recipient server and it was caused by mismatch between
From
header and envelope address. Then we found out that Nette did not pass required parameter (-f
) to sendmail automatically and it must be set manually. I would expect this would be handled by mailer.We solved it by replacing default
SendmailMailer
by this child class:I just think this should either be default behaviour (is the any case when yo do not want to pass -f parameter?) or be configurable either by providing subclass (
EnvelopeSendmailMailer
,FromSendmailMailer
, ...) as we did it or even better maybe as option (setPassEnvelopeFrom()
) ofSendmailMailer
.The text was updated successfully, but these errors were encountered: