Variable: eudc-default-return-attributes
eudc-default-return-attributes is a customizable variable defined in
eudc-vars.el.gz.
Value
nil
Documentation
A list of default attributes to extract from directory entries.
If set to the symbol all, return all attributes.
A value of nil means return the default attributes as configured in the
server.
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc-vars.el.gz
(defcustom eudc-default-return-attributes nil
"A list of default attributes to extract from directory entries.
If set to the symbol `all', return all attributes.
A value of nil means return the default attributes as configured in the
server."
:type '(choice :menu-tag "Return Attributes"
(const :menu-tag "Server defaults (nil)" nil)
(const :menu-tag "All" all)
(repeat :menu-tag "Attribute list"
:tag "Attribute name"
:value (nil)
(symbol :tag "Attribute name"))))