Variable: mh-alias-local-users-prefix

mh-alias-local-users-prefix is a customizable variable defined in mh-e.el.gz.

Value

"local."

Documentation

String prefixed to the real names of users from the password file.

This option can also be set to "Use Login".

For example, consider the following password file entry:

    psg:x:1000:1000:Peter S Galbraith,,,:/home/psg:/bin/tcsh

The following settings of this option will produce the associated aliases:

    "local." local.peter.galbraith
    "" peter.galbraith
    Use Login psg

This option has no effect if variable mh-alias-local-users(var)/mh-alias-local-users(fun) is turned off.

This variable was added, or its default value changed, in MH-E version
7.4.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-alias-local-users-prefix "local."
  "String prefixed to the real names of users from the password file.
This option can also be set to \"Use Login\".

For example, consider the following password file entry:

    psg:x:1000:1000:Peter S Galbraith,,,:/home/psg:/bin/tcsh

The following settings of this option will produce the associated
aliases:

    \"local.\"                  local.peter.galbraith
    \"\"                        peter.galbraith
    Use Login                   psg

This option has no effect if variable `mh-alias-local-users' is
turned off."
  :type '(choice (const :tag "Use Login" nil)
                 (string))
  :group 'mh-alias
  :package-version '(MH-E . "7.4"))