Variable: feedmail-queue-slug-maker

feedmail-queue-slug-maker is a customizable variable defined in feedmail.el.gz.

Value

feedmail-queue-subject-slug-maker

Documentation

If non-nil, a function which creates part of the queued file name.

Takes a single argument giving the name of the directory into which the message will be queued. The returned string should be just the non-directory filename part, without FQM suffix or uniquifying sequence numbers. The current buffer holds the raw message. The default function creates the slug based on the message subject, if any.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-queue-slug-maker 'feedmail-queue-subject-slug-maker
  "If non-nil, a function which creates part of the queued file name.
Takes a single argument giving the name of the directory into
which the message will be queued.  The returned string should be just
the non-directory filename part, without FQM suffix or uniquifying
sequence numbers.  The current buffer holds the raw message.  The
default function creates the slug based on the message subject, if
any."
  :group 'feedmail-queue
  :type '(choice (const nil) function)
  )