Variable: feedmail-queue-directory

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

Value

"/root/mail/q"

Documentation

Name of a directory where messages will be queued.

Directory will be created if necessary. Should be a string that doesn't end with a slash. Default is "~/mail/q".

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-queue-directory
  (expand-file-name "~/mail/q")
  "Name of a directory where messages will be queued.
Directory will be created if necessary.  Should be a string that
doesn't end with a slash.  Default is \"~/mail/q\"."
  :group 'feedmail-queue
  :type 'string
  )