In article <[email protected]> you write: >Maybe it's me, but I don't understand the change below. The only difference I >see between Old: and New: is the removal of «minOccurs="1"». Since that is >the >default value, I see no incompatibility. What am I missing?
If there is neither minOccurs nor maxOccurs, the field occurs exactly once. >> <xs:complexType name="IdentifierType"> >> <xs:all> >> <!-- The envelope recipient domain. --> >> <xs:element name="envelope_to" type="xs:string" >> minOccurs="0"/> >> <!-- The RFC5321.MailFrom domain. --> >> <xs:element name="envelope_from" type="xs:string" >> minOccurs="1"/> >> Old: >> <!-- The RFC5322.From domain. --> >> <xs:element name="header_from" type="xs:string" >> minOccurs="1"/> >> >> New: >> <!-- The RFC5322.From domain. --> >> <xs:element name="header_from" type="xs:string"/> >> >> </xs:all> >> </xs:complexType> _______________________________________________ dmarc mailing list [email protected] https://www.ietf.org/mailman/listinfo/dmarc
