[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: FWS problem



Stupid Boy wrote:

>| references  = "References:" SP [CFWS] msg-id-list [CFWS] CRLF
>| msg-id-list = msg-id-core *( WSP [CFWS WSP] msg-id-core )

Nonsense, that should be:

| references  = "References:" SP msg-id-list CRLF
| msg-id-list = [CFWS WSP] msg-id-core *( WSP [CFWS WSP] msg-id-core ) [WSP CFWS]

-or- (if a comment is good enough as separator)

| msg-id-list = [CFWS] msg-id-core *(CFWS msg-id-core ) [CFWS]

The latter allows (x)<y@z>(a)<b@c>(u)<v@w>(e) where the former
insists on (x) <y@z> (a) <b@c> (u) <v@w> (e).  These comments
almost everywhere are a pain, just like NO-WS-CTL.  Bye, Frank