diff options
author | Christian Mollekopf <mollekopf@kolabsys.com> | 2013-04-24 16:58:15 (GMT) |
---|---|---|
committer | Christian Mollekopf <mollekopf@kolabsys.com> | 2013-04-24 16:58:15 (GMT) |
commit | 44b444e03270faeb1fe4f020e131ca718329a790 (patch) | |
tree | 2e289173af0fe6cf66cb2f4dd7fcc2a36e03ff76 | |
parent | 7f0a45cd10ac1f934938e3f3570d7903156bbc11 (diff) | |
download | keps-44b444e03270faeb1fe4f020e131ca718329a790.tar.gz |
email type.
-rw-r--r-- | KEP-0017.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/KEP-0017.txt b/KEP-0017.txt index ba4499c..e286b60 100644 --- a/KEP-0017.txt +++ b/KEP-0017.txt @@ -1375,7 +1375,10 @@ Implements: ===== EMail ===== property-email = element email { - element parameters { element pref { element integer { 1 } } } ?, + element parameters { + element pref { element integer { 1 } } ?, + element type { element text { "work" | "home" } } * + } ?, element text { [[#String]] } } @@ -1384,6 +1387,9 @@ Implements: The text value '''SHOULD''' be interpreted as addr-spec according to {{rfc|5322}}<ref name="rfc5322">{{rfc|5322}} Internet Message Format</ref> [https://tools.ietf.org/html/rfc5322#section-3.4.1]. The "pref" parameter '''MAY''' be used to indicate the preferred email address. Only one email address '''SHOULD''' be marked as preferred address. +The "type" parameter '''MAY''' be used to indicate the type of the email address. +* "work": indicates the email address is work related +* "home": indicates the email address is a private email address Implements: * {{rfc|6350}} [https://tools.ietf.org/html/rfc6350#section-6.4.2 section-6.4.2] |