Update message spec to specify that dots are allowed in keys

This commit is contained in:
Netscape Navigator 2020-10-11 11:08:26 -05:00
parent f3f94d969a
commit 683f869e8d
1 changed files with 2 additions and 1 deletions

View File

@ -180,8 +180,9 @@ Some notes about body entries:
* A message may not exceed 128 key/value pairs. * A message may not exceed 128 key/value pairs.
* A key must be 1-90 characters in length. * A key must be 1-90 characters in length.
* A key cannot contain whitespace or control characters * A key cannot contain whitespace or control characters
* A key may contain any of the following characters: * A key only contains the following characters (`[A-Z|a-z|\-|\_|\.|0-9]{1,90}`):
* alphanumeric characters (a-z, A-Z, 0-9) * alphanumeric characters (a-z, A-Z, 0-9)
* dots (`.`)
* dashes (`-`) * dashes (`-`)
* underscores (`_`) * underscores (`_`)
* A value may be a: * A value may be a: