1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00
emacs/lisp/net/eudc-vars.el

410 lines
15 KiB
EmacsLisp
Raw Normal View History

2000-01-12 20:50:20 +00:00
;;; eudc-vars.el --- Emacs Unified Directory Client
;; Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
2000-01-12 20:50:20 +00:00
;; Author: Oscar Figueiredo <oscar@cpe.fr>
;; Maintainer: Pavel Jan<61>k <Pavel@Janik.cz>
2002-01-06 16:37:36 +00:00
;; Keywords: comm
2000-01-12 20:50:20 +00:00
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
2000-01-12 20:50:20 +00:00
;;; Code:
(require 'custom)
;;{{{ EUDC Main Custom Group
2000-10-06 18:56:44 +00:00
(defgroup eudc nil
2000-01-12 20:50:20 +00:00
"Emacs Unified Directory Client."
2000-10-06 18:56:44 +00:00
:version "21.1"
:link '(info-link "(eudc)")
2000-01-12 20:50:20 +00:00
:group 'mail
:group 'comm)
(defcustom eudc-server nil
"*The name or IP address of the directory server.
A port number may be specified by appending a colon and a
number to the name of the server. Use `localhost' if the directory
server resides on your computer (BBDB backend)."
:type '(choice (string :tag "Server") (const :tag "None" nil))
2000-01-12 20:50:20 +00:00
:group 'eudc)
;; Known protocols (used in completion)
;; Not to be mistaken with `eudc-supported-protocols'
(defvar eudc-known-protocols '(bbdb ph ldap))
(defvar eudc-supported-protocols nil
"Protocols currently supported by EUDC.
This variable is updated when protocol-specific libraries
are loaded, *do not change manually*.")
(defcustom eudc-protocol nil
"*The directory protocol to use to query the server.
Supported protocols are specified by `eudc-supported-protocols'."
:type `(choice :menu-tag "Protocol"
2000-10-06 18:56:44 +00:00
,@(mapcar (lambda (s)
2000-01-12 20:50:20 +00:00
(list 'const ':tag (symbol-name s) s))
eudc-known-protocols)
(const :tag "None" nil))
2000-01-12 20:50:20 +00:00
:group 'eudc)
(defcustom eudc-strict-return-matches t
"*Ignore or allow entries not containing all requested return attributes.
If non-nil, such entries are ignored."
:type 'boolean
:group 'eudc)
(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)
2000-10-06 18:56:44 +00:00
(repeat :menu-tag "Attribute list"
2000-01-12 20:50:20 +00:00
:tag "Attribute name"
:value (nil)
(symbol :tag "Attribute name")))
:group 'eudc)
(defcustom eudc-multiple-match-handling-method 'select
"*What to do when multiple entries match an inline expansion query.
2000-10-06 18:56:44 +00:00
Possible values are:
2000-01-12 20:50:20 +00:00
`first' (equivalent to nil) which means keep the first match only,
`select' pop-up a selection buffer,
`all' expand to all matches,
`abort' the operation is aborted, an error is signaled."
:type '(choice :menu-tag "Method"
2000-10-06 18:56:44 +00:00
(const :menu-tag "Use First"
2000-01-12 20:50:20 +00:00
:tag "Use First" first)
2000-10-06 18:56:44 +00:00
(const :menu-tag "Select Interactively"
2000-01-12 20:50:20 +00:00
:tag "Select Interactively" select)
2000-10-06 18:56:44 +00:00
(const :menu-tag "Use All"
2000-01-12 20:50:20 +00:00
:tag "Use All" all)
2000-10-06 18:56:44 +00:00
(const :menu-tag "Abort Operation"
2000-01-12 20:50:20 +00:00
:tag "Abort Operation" abort)
2000-10-06 18:56:44 +00:00
(const :menu-tag "Default (Use First)"
2000-01-12 20:50:20 +00:00
:tag "Default (Use First)" nil))
:group 'eudc)
(defcustom eudc-duplicate-attribute-handling-method '((email . duplicate))
"*A method to handle entries containing duplicate attributes.
This is either an alist (ATTR . METHOD) or a symbol METHOD.
The alist form of the variable associates a method to an individual attribute,
the second form specifies a method applicable to all attributes.
Available methods are:
`list' or nil lets the value of the attribute be a list of values,
`first' keeps the first value and discards the others,
`concat' concatenates the values into a single multiline string,
2000-10-06 18:56:44 +00:00
`duplicate' duplicates the entire entry into as many instances as
2000-01-12 20:50:20 +00:00
different values."
:type '(choice (const :menu-tag "List" list)
(const :menu-tag "First" first)
(const :menu-tag "Concat" concat)
(const :menu-tag "Duplicate" duplicate)
(repeat :menu-tag "Per Attribute Specification"
:tag "Per Attribute Specification"
(cons :tag "Attribute/Method"
:value (nil . list)
(symbol :tag "Attribute name")
(choice :tag "Method"
:menu-tag "Method"
(const :menu-tag "List" list)
(const :menu-tag "First" first)
(const :menu-tag "Concat" concat)
(const :menu-tag "Duplicate" duplicate)))))
:group 'eudc)
2000-10-06 18:56:44 +00:00
(defcustom eudc-inline-query-format '((name)
2000-01-12 20:50:20 +00:00
(firstname name))
"*Format of an inline expansion query.
2000-10-06 18:56:44 +00:00
This is a list of FORMATs. A FORMAT is itself a list of one or more
2000-01-12 20:50:20 +00:00
EUDC attribute names. A FORMAT applies if it contains as many attributes as
there are individual words in the inline query string.
2000-10-06 18:56:44 +00:00
If several FORMATs apply then they are tried in order until a match
is found.
If nil, all the words are mapped onto the default server or protocol
2000-01-12 20:50:20 +00:00
attribute name.
The attribute names in FORMATs are not restricted to EUDC attribute names
but can also be protocol/server specific names. In this case, this variable
must be set in a protocol/server-local fashion, see `eudc-server-set' and
`eudc-protocol-set'."
:tag "Format of Inline Expansion Queries"
:type '(repeat
(repeat
:menu-tag "Format"
:tag "Format"
(choice
:tag "Attribute"
(const :menu-tag "First Name" :tag "First Name" firstname)
(const :menu-tag "Surname" :tag "Surname" name)
(const :menu-tag "Email Address" :tag "Email Address" email)
(const :menu-tag "Phone" :tag "Phone" phone)
(symbol :menu-tag "Other" :tag "Attribute name"))))
:group 'eudc)
(defcustom eudc-expansion-overwrites-query t
"*If non nil, expanding a query overwrites the query string."
:type 'boolean
:group 'eudc)
(defcustom eudc-inline-expansion-format '("%s" email)
"*A list specifying the format of the expansion of inline queries.
This variable controls what `eudc-expand-inline' actually inserts in
the buffer. First element is a string passed to `format'. Remaining
elements are symbols indicating attribute names; the corresponding values
are passed as additional arguments to `format'."
2000-10-06 18:56:44 +00:00
:type '(list
2000-01-12 20:50:20 +00:00
(string :tag "Format String")
(repeat :inline t
:tag "Attributes"
2000-10-06 18:56:44 +00:00
(choice
2000-01-12 20:50:20 +00:00
:tag "Attribute"
(const :menu-tag "First Name" :tag "First Name" firstname)
(const :menu-tag "Surname" :tag "Surname" name)
(const :menu-tag "Email Address" :tag "Email Address" email)
(const :menu-tag "Phone" :tag "Phone" phone)
(symbol :menu-tag "Other")
(symbol :tag "Attribute name"))))
:group 'eudc)
(defcustom eudc-inline-expansion-servers 'server-then-hotlist
"*Which servers to contact for the expansion of inline queries.
Possible values are:
`current-server': the EUDC current server.
`hotlist': the servers of the hotlist in the order they appear,
2000-10-06 18:56:44 +00:00
`server-then-hotlist': the current server and then the servers of
2000-01-12 20:50:20 +00:00
the hotlist."
:type '(choice :tag "Servers"
:menu-tag "Servers"
(const :menu-tag "Current server" current-server)
(const :menu-tag "Servers in the hotlist" hotlist)
(const :menu-tag "Current server then hotlist" server-then-hotlist))
:group 'eudc)
(defcustom eudc-max-servers-to-query nil
"*Maximum number of servers to query for an inline expansion.
If nil, query all servers available from `eudc-inline-expansion-servers'."
:tag "Max Number of Servers to Query"
:type '(choice :tag "Max. Servers"
:menu-tag "Max. Servers"
(const :menu-tag "No limit" nil)
(const :menu-tag "1" 1)
(const :menu-tag "2" 2)
(const :menu-tag "3" 3)
(const :menu-tag "4" 4)
(const :menu-tag "5" 5)
(integer :menu-tag "Set"))
:group 'eudc)
(defcustom eudc-query-form-attributes '(name firstname email phone)
"*A list of attributes presented in the query form."
:tag "Attributes in Query Forms"
2000-10-06 18:56:44 +00:00
:type '(repeat
2000-01-12 20:50:20 +00:00
(choice
:tag "Attribute"
(const :menu-tag "First Name" :tag "First Name" firstname)
(const :menu-tag "Surname" :tag "Surname" name)
(const :menu-tag "Email Address" :tag "Email Address" email)
(const :menu-tag "Phone" :tag "Phone" phone)
(symbol :menu-tag "Other" :tag "Attribute name")))
:group 'eudc)
(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")
(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.
2000-10-06 18:56:44 +00:00
These names are used as prompt strings in query/response forms
2000-01-12 20:50:20 +00:00
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 ")))
:group 'eudc)
(defcustom eudc-use-raw-directory-names nil
"*If non-nil, use attributes names as defined in the directory.
Otherwise, directory query/response forms display the user attribute
names defined in `eudc-user-attribute-names-alist'."
:type 'boolean
:group 'eudc)
(defcustom eudc-attribute-display-method-alist nil
"*An alist specifying methods to display attribute values.
Each member of the list is of the form (NAME . FUNC) where NAME is a lowercased
2000-10-06 18:56:44 +00:00
string naming a directory attribute (translated according to
`eudc-user-attribute-names-alist' if `eudc-use-raw-directory-names' is
non-nil) and FUNC a function that will be passed the corresponding
2000-01-12 20:50:20 +00:00
attribute values for display."
:tag "Attribute Decoding Functions"
:type '(repeat (cons :tag "Attribute"
(symbol :tag "Name")
(symbol :tag "Display Function")))
:group 'eudc)
(defcustom eudc-external-viewers '(("ImageMagick" "display" "-")
2000-01-12 20:50:20 +00:00
("ShowAudio" "showaudio"))
"*A list of viewer program specifications.
Viewers are programs which can be piped a directory attribute value for
2000-10-06 18:56:44 +00:00
display or arbitrary processing. Each specification is a list whose
first element is a string naming the viewer. The second element is the
2000-01-12 20:50:20 +00:00
executable program which should be invoked, and following elements are
arguments that should be passed to the program."
:tag "External Viewer Programs"
:type '(repeat (list :tag "Viewer"
(string :tag "Name")
(string :tag "Executable program")
(repeat
:tag "Arguments"
:inline t
(string :tag "Argument"))))
:group 'eudc)
(defcustom eudc-options-file "~/.eudc-options"
"*A file where the `servers' hotlist is stored."
:type '(file :Tag "File Name:")
:group 'eudc)
(defcustom eudc-mode-hook nil
"*Normal hook run on entry to EUDC mode."
:type '(repeat (sexp :tag "Hook definition"))
:group 'eudc)
;;}}}
;;{{{ PH Custom Group
2000-10-06 18:56:44 +00:00
(defgroup eudc-ph nil
2000-01-12 20:50:20 +00:00
"Emacs Unified Directory Client - CCSO PH/QI Backend."
:group 'eudc)
(defcustom eudc-ph-bbdb-conversion-alist
'((name . name)
(net . email)
(address . (eudc-bbdbify-address address "Address"))
(phone . ((eudc-bbdbify-phone phone "Phone")
(eudc-bbdbify-phone office_phone "Office Phone"))))
"*A mapping from BBDB to PH/QI fields.
This is a list of cons cells (BBDB-FIELD . SPEC-OR-LIST) where
BBDB-FIELD is the name of a field that must be defined in your BBDB
environment (standard field names are `name', `company', `net', `phone',
`address' and `notes'). SPEC-OR-LIST is either a single SPEC or a list
of SPECs. Lists of specs are valid only for the `phone' and `address'
BBDB fields. SPECs are sexps which are evaluated:
a string evaluates to itself,
a symbol evaluates to the symbol value. Symbols naming PH/QI fields
present in the record evaluate to the value of the field in the record,
2000-10-06 18:56:44 +00:00
a form is evaluated as a function. The argument list may contain PH/QI
2000-01-12 20:50:20 +00:00
field names which eval to the corresponding values in the
record. The form evaluation should return something appropriate for
the particular BBDB-FIELD (see `bbdb-create-internal').
`eudc-bbdbify-phone' and `eudc-bbdbify-address' are provided as convenience
functions to parse phones and addresses."
:tag "BBDB to PH Field Name Mapping"
:type '(repeat (cons :tag "Field Name"
(symbol :tag "BBDB Field")
(sexp :tag "Conversion Spec")))
:group 'eudc-ph)
;;}}}
;;{{{ LDAP Custom Group
2000-10-06 18:56:44 +00:00
(defgroup eudc-ldap nil
2000-01-12 20:50:20 +00:00
"Emacs Unified Directory Client - LDAP Backend."
:group 'eudc)
(defcustom eudc-ldap-bbdb-conversion-alist
'((name . cn)
(net . mail)
(address . (eudc-bbdbify-address postaladdress "Address"))
(phone . ((eudc-bbdbify-phone telephonenumber "Phone"))))
"*A mapping from BBDB to LDAP attributes.
This is a list of cons cells (BBDB-FIELD . SPEC-OR-LIST) where
BBDB-FIELD is the name of a field that must be defined in your BBDB
environment (standard field names are `name', `company', `net', `phone',
`address' and `notes'). SPEC-OR-LIST is either a single SPEC or a list
of SPECs. Lists of specs are valid only for the `phone' and `address'
BBDB fields. SPECs are sexps which are evaluated:
a string evaluates to itself,
a symbol evaluates to the symbol value. Symbols naming LDAP attributes
present in the record evaluate to the value of the field in the record,
2000-10-06 18:56:44 +00:00
a form is evaluated as a function. The argument list may contain LDAP
2000-01-12 20:50:20 +00:00
field names which eval to the corresponding values in the
record. The form evaluation should return something appropriate for
the particular BBDB-FIELD (see `bbdb-create-internal').
`eudc-bbdbify-phone' and `eudc-bbdbify-address' are provided as convenience
functions to parse phones and addresses."
:tag "BBDB to LDAP Attribute Names Mapping"
:type '(repeat (cons :tag "Field Name"
(symbol :tag "BBDB Field")
(sexp :tag "Conversion Spec")))
:group 'eudc-ldap)
;;}}}
;;{{{ BBDB Custom Group
2000-10-06 18:56:44 +00:00
(defgroup eudc-bbdb nil
2000-01-12 20:50:20 +00:00
"Emacs Unified Directory Client - BBDB Backend."
:group 'eudc)
(defcustom eudc-bbdb-use-locations-as-attribute-names t
"If non-nil, BBDB address and phone locations are used as attribute names.
This has no effect on queries (you can't search for a specific location)
2002-01-05 23:28:03 +00:00
but influences the way records are displayed."
2000-01-12 20:50:20 +00:00
:type 'boolean
:group 'eudc-bbdb)
(defcustom eudc-bbdb-enable-substring-matches t
"If non-nil, authorize substring match in the same way BBDB does.
Otherwise records must match queries exactly."
:type 'boolean
:group 'eudc-bbdb)
;;}}}
(provide 'eudc-vars)
;;; eudc-vars.el ends here