Function: message-canlock-password

message-canlock-password is a byte-compiled function defined in message.el.gz.

Signature

(message-canlock-password)

Documentation

The password used by message for cancel locks.

This is the value of canlock-password, if that option is non-nil. Otherwise, generate and save a value for canlock-password first.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-canlock-password ()
  "The password used by message for cancel locks.
This is the value of `canlock-password', if that option is non-nil.
Otherwise, generate and save a value for `canlock-password' first."
  (require 'canlock)
  (unless canlock-password
    (customize-save-variable 'canlock-password (message-canlock-generate))
    (setq canlock-password-for-verify canlock-password))
  canlock-password)