Variable: eudc-user-attribute-names-alist

eudc-user-attribute-names-alist is a customizable variable defined in eudc-vars.el.gz.

Value

((url . "URL") (callsign . "HAM Call Sign") (id . "ID")
 (email . "E-Mail") (firstname . "First Name") (cn . "Full Name")
 (sn . "Surname") (name . "Surname") (givenname . "First Name")
 (ou . "Unit") (labeledurl . "URL") (postaladdress . "Address")
 (postalcode . "Postal Code") (l . "Location") (c . "Country")
 (o . "Organization") (roomnumber . "Office")
 (telephonenumber . "Phone") (uniqueidentifier . "ID")
 (objectclass . "Object Class"))

Documentation

Alist of user-defined names for directory attributes.

These names are used as prompt strings in query/response forms instead of the raw directory attribute names. Prompt strings for attributes that are not listed here are derived by splitting the attribute name at _ characters and capitalizing the individual words.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc-vars.el.gz
(defcustom eudc-user-attribute-names-alist '((url . "URL")
					     (callsign . "HAM Call Sign")
					     (id . "ID")
					     (email . "E-Mail")
					     (firstname . "First Name")
					     (cn . "Full Name")
					     (sn . "Surname")
					     (name . "Surname")
					     (givenname . "First Name")
					     (ou . "Unit")
					     (labeledurl . "URL")
					     (postaladdress . "Address")
					     (postalcode . "Postal Code")
					     (l . "Location")
					     (c . "Country")
					     (o . "Organization")
					     (roomnumber . "Office")
					     (telephonenumber . "Phone")
					     (uniqueidentifier . "ID")
					     (objectclass . "Object Class"))
  "Alist of user-defined names for directory attributes.
These names are used as prompt strings in query/response forms
instead of the raw directory attribute names.
Prompt strings for attributes that are not listed here
are derived by splitting the attribute name
at `_' characters and capitalizing the individual words."
  :tag   "User-defined Names of Directory Attributes"
  :type  '(repeat (cons :tag "Field"
			(symbol :tag "Directory attribute")
			(string :tag "User friendly name "))))