Variable: ange-ftp-generate-anonymous-password

ange-ftp-generate-anonymous-password is a customizable variable defined in ange-ftp.el.gz.

Value

t

Documentation

If t, use value of user-mail-address as password for anonymous FTP.

If a string, then use that string as the password. If nil, prompt the user for a password.

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defcustom ange-ftp-generate-anonymous-password t
  "If t, use value of `user-mail-address' as password for anonymous FTP.

If a string, then use that string as the password.
If nil, prompt the user for a password."
  :group 'ange-ftp
  :type '(choice (const :tag "Prompt" nil)
		 string
		 (other :tag "User address" t)))