Hello all,
I am having a hell of a time trying to figure out which ACL to actually put:
using the EXIM Advanced Editor.
I have read Chapter 47 of the EXIM manual a billion times and have tried inserting in different places but after testing my outgoing emails using mail-tester.com, I continue to get:
"-0.14 MISSING_MID Missing Message-Id: header"
Does anyone here have any familiarity with this or have successfully got this working before? Any help is greatly appreciated. I am simply trying to be a good sender.
Thank you in advance.
Mike Keller
Exim Reference links
47. Message processing
43. Access control lists
"control = submission/<options>
This control is permitted only for the MAIL, RCPT, and start of data ACLs (the latter is the one defined by acl_smtp_predata). Setting it tells Exim that the current message is a submission from a local MUA. In this case, Exim operates in “submission mode”, and applies certain fixups to the message if necessary. For example, it adds a Date: header line if one is not present. This control is not permitted in the acl_smtp_data ACL, because that is too late (the message has already been created).
Chapter 47 describes the processing that Exim applies to messages. Section 47.1 covers the processing that happens in submission mode; the available options for this control are described there. The control applies only to the current message, not to any subsequent ones that may be received in the same SMTP connection."
I am having a hell of a time trying to figure out which ACL to actually put:
Code:
warn hosts = 127.0.0.1
control = submission
I have read Chapter 47 of the EXIM manual a billion times and have tried inserting in different places but after testing my outgoing emails using mail-tester.com, I continue to get:
"-0.14 MISSING_MID Missing Message-Id: header"
Does anyone here have any familiarity with this or have successfully got this working before? Any help is greatly appreciated. I am simply trying to be a good sender.
Thank you in advance.
Mike Keller
Exim Reference links
47. Message processing
43. Access control lists
"control = submission/<options>
This control is permitted only for the MAIL, RCPT, and start of data ACLs (the latter is the one defined by acl_smtp_predata). Setting it tells Exim that the current message is a submission from a local MUA. In this case, Exim operates in “submission mode”, and applies certain fixups to the message if necessary. For example, it adds a Date: header line if one is not present. This control is not permitted in the acl_smtp_data ACL, because that is too late (the message has already been created).
Chapter 47 describes the processing that Exim applies to messages. Section 47.1 covers the processing that happens in submission mode; the available options for this control are described there. The control applies only to the current message, not to any subsequent ones that may be received in the same SMTP connection."