diff options
| author | Thomas Fitzsimmons | 2015-03-09 21:02:37 -0400 |
|---|---|---|
| committer | Thomas Fitzsimmons | 2015-03-09 21:02:37 -0400 |
| commit | ff032662775fb3faa7eaa99947fc40e18c948e82 (patch) | |
| tree | 707c9a251ac5097bda83150af67e8c1666379bbb | |
| parent | b20113f0f72a20a6c7eb8bfeef4d64633ed7a80c (diff) | |
| download | emacs-ff032662775fb3faa7eaa99947fc40e18c948e82.tar.gz emacs-ff032662775fb3faa7eaa99947fc40e18c948e82.zip | |
Recognize more LDAP attributes
Fixes: debbugs:8983
* net/ldap.el (ldap-attribute-syntaxes-alist): Add LDAP attributes
from RFC2798 Section 9.1.1. (Bug#8983)
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/ldap.el | 14 |
2 files changed, 17 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8330a46c89..df45ec49632 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-03-10 Thomas Fitzsimmons <fitzsim@fitzsim.org> | ||
| 2 | |||
| 3 | * net/ldap.el (ldap-attribute-syntaxes-alist): Add LDAP attributes | ||
| 4 | from RFC2798 Section 9.1.1. (Bug#8983) | ||
| 5 | |||
| 1 | 2015-03-09 Nicolas Petton <nicolas@petton.fr> | 6 | 2015-03-09 Nicolas Petton <nicolas@petton.fr> |
| 2 | 7 | ||
| 3 | * emacs-lisp/seq.el (seq-into): New function. | 8 | * emacs-lisp/seq.el (seq-into): New function. |
diff --git a/lisp/net/ldap.el b/lisp/net/ldap.el index 1df975af3d9..1c604e330b2 100644 --- a/lisp/net/ldap.el +++ b/lisp/net/ldap.el | |||
| @@ -376,9 +376,19 @@ RFC2252 section 4.3.2") | |||
| 376 | (houseidentifier . 15) | 376 | (houseidentifier . 15) |
| 377 | (supportedalgorithms . 49) | 377 | (supportedalgorithms . 49) |
| 378 | (deltarevocationlist . 9) | 378 | (deltarevocationlist . 9) |
| 379 | (dmdname . 15)) | 379 | (dmdname . 15) |
| 380 | (carlicense . 15) | ||
| 381 | (departmentnumber . 15) | ||
| 382 | (displayname . 15) | ||
| 383 | (employeenumber . 15) | ||
| 384 | (employeetype . 15) | ||
| 385 | (jpegphoto . 28) | ||
| 386 | (preferredlanguage . 15) | ||
| 387 | (usersmimecertificate . 5) | ||
| 388 | (userpkcs12 . 5)) | ||
| 380 | "A map of LDAP attribute names to their type object id minor number. | 389 | "A map of LDAP attribute names to their type object id minor number. |
| 381 | This table is built from RFC2252 Section 5 and RFC2256 Section 5") | 390 | This table is built from RFC2252 Section 5, RFC2256 Section 5 and |
| 391 | RFC2798 Section 9.1.1") | ||
| 382 | 392 | ||
| 383 | 393 | ||
| 384 | ;; Coding/decoding functions | 394 | ;; Coding/decoding functions |