Variable: feedmail-binmail-gnulinuxish-template
feedmail-binmail-gnulinuxish-template is a variable defined in
feedmail.el.gz.
Value
"(echo From root ; cat -) | /usr/bin/rmail %s"
Documentation
Good candidate for GNU/Linux systems and maybe others.
You may need to modify this if your "rmail" is in a different place. For example, I hear that in some Debian systems, it's /usr/sbin/rmail. See feedmail-binmail-template documentation.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defconst feedmail-binmail-gnulinuxish-template
(concat
"(echo From "
(if (boundp 'user-login-name) user-login-name "feedmail")
" ; cat -) | /usr/bin/rmail %s")
"Good candidate for GNU/Linux systems and maybe others.
You may need to modify this if your \"rmail\" is in a different place.
For example, I hear that in some Debian systems, it's /usr/sbin/rmail.
See feedmail-binmail-template documentation."
)