On 12/6/01 at 2:47 PM -0800, ned+ietf-822(_at_)mrochek(_dot_)com wrote:
>This unfortunately, does look to be a correct reading of the production:
>
>obs-domain-list = "@" domain *(*(CFWS / "," ) [CFWS] "@" domain)
>
>I believe this rule should be something like:
>
>obs-domain-list = "@" domain *([CFWS] "," *(CFWS / ",") "@" domain)
Yup, I forgot about that error; it was pointed out to me not to long
ago and needs to be fixed. Actually, because domain is surrounded by
optional whitespace, simpler than your's is:
obs-domain-list = "@" domain *(1*("," [CFWS]) "@" domain)
You might want to submit this to the RFC Editor so they can put it on their
RFC errata page.
Ned