Variable: mh-alias-local-users
mh-alias-local-users is a customizable variable defined in mh-e.el.gz.
Value
t
Documentation
Non-nil means local users are added to alias completion.
Aliases are created from "/etc/passwd" entries with a user ID larger than a magical number, typically 200. This can be a handy tool on a machine where you and co-workers exchange messages. These aliases have the form "local.first.last" if a real name is present in the password file. Otherwise, the alias will have the form "local.login".
If you're on a system with thousands of users you don't know, and the loading of local aliases slows MH-E down noticeably, then turn this option off.
This option also takes a string which is executed to generate the password file. For example, use "ypcat passwd" to obtain the NIS password file.
This variable was added, or its default value changed, in MH-E version
7.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-alias-local-users t
"Non-nil means local users are added to alias completion.
Aliases are created from \"/etc/passwd\" entries with a user ID
larger than a magical number, typically 200. This can be a handy
tool on a machine where you and co-workers exchange messages.
These aliases have the form \"local.first.last\" if a real name is
present in the password file. Otherwise, the alias will have the
form \"local.login\".
If you're on a system with thousands of users you don't know, and
the loading of local aliases slows MH-E down noticeably, then
turn this option off.
This option also takes a string which is executed to generate the
password file. For example, use \"ypcat passwd\" to obtain the
NIS password file."
:type '(choice (boolean) (string))
:group 'mh-alias
:package-version '(MH-E . "7.1"))