* Added arc.chain to be recognized by ar parser#39
* Added arc.chain to be recognized by ar parser#39theSCHAPPY wants to merge 1 commit intoflowerysong:mainfrom
Conversation
|
Ignoring results with If you have a need to add a chain property when you are not the final receiver, rather than modifying the parsing you'll need to rework the functionality that adds the property so that it uses the appropriate ptype ( |
|
Setting vs. Here it is recommend to set Setup: Incoming mails are handled by postfix, verified by the following milters: Today, O365 hosted domains send out ARC-signed mails, i.e. a chain is already present when receiving these mails. In openARC verification mode for incoming mails, a ARC AR, Seal, and Signature header are added. I want to make sure that delivery to local recipients incorporates AR headers Thanks! |
ar-testis unable to parse the following AR header taken from milter-test becausearc.chainis not a recognized ptype:example.com; arc=pass header.oldest-pass=0 smtp.remote-ip=127.0.0.1 arc.chain="example.com:example.com"In addition, you will find the following message logged to syslog:
<MSGID>: can't parse Authentication-Results; <AUTHSERV_ID>; arc=pass header.oldest-pass=0 smtp.remote-ip="<IP>" arc.chain=<CHAINNAME> ; ignoringThe
arc.chainptype is added during verification of messages, which have already an existing ARC chain present. This is the case if you receive o365 managed domains nowadays.After adding
arcto the list of allowedptypesfor ar parser, the AR header is recognized correctly.Cheers!