|
|
|
Found 2 records.
Errata ID: 2655
Status: Verified
Type: Technical
Reported By: Alexey Melnikov
Date Reported: 2010-12-02
Verifier Name: Peter Saint-Andre
Date Verified: 2011-05-16
Section 4 says:
| quoted = DQUOTE *1024QUOTED-CHAR DQUOTE
;; limited to 1024 octets between the <">s
It should say:
| quoted = DQUOTE *QUOTED-CHAR DQUOTE
;; limited to 1024 octets between the <">s
Notes:
The 1024 limit is on the number of octets, not on the number of Unicode characters.
As per bug report from Mark Crispin.
Errata ID: 2635
Status: Held for Document Update
Type: Technical
Reported By: Alexey Melnikov
Date Reported: 2010-11-17
Held for Document Update by: Peter Saint-Andre
Section 4 says:
single-capability = capability-name [SP string] CRLF
capability-name = string
;; Note that literal-s2c is allowed.
initial-capabilities = DQUOTE "IMPLEMENTATION" DQUOTE SP string /
DQUOTE "SASL" DQUOTE SP sasl-mechs /
DQUOTE "SIEVE" DQUOTE SP sieve-extensions /
DQUOTE "MAXREDIRECTS" DQUOTE SP number-str /
DQUOTE "NOTIFY" DQUOTE SP notify-mechs /
DQUOTE "STARTTLS" DQUOTE /
DQUOTE "LANGUAGE" DQUOTE SP language /
DQUOTE "VERSION" DQUOTE SP version /
DQUOTE "OWNER" DQUOTE SP string
| ;; Each capability conforms to
| ;; the syntax for single-capability.
;; Also note that the capability name
;; can be returned as either literal-s2c
;; or quoted, even though only "quoted"
;; string is shown above.
Notes:
single-capability definition includes CRLF, while each initial-capabilities alternative doesn't. Either the ABNF comment for initial-capabilities needs to be updated to reflect that, or one of single-capability/initial-capabilities needs to be updated to make the comment true.