/etc/emacs/site-start.d/50mailutils-mh.el is in mailutils-mh 1:3.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | ;; -*-emacs-lisp-*-
;;
;; Emacs startup file for the Debian GNU/Linux mailutils-mh package
(if (not (file-exists-p "/usr/bin/mu-mh/inc"))
(message "Package mailutils-mh removed but not purged. Skipping setup.")
;; This sets up Emacs20's and Emacs21's MH-E to use GNU mailutils MH.
;; The MH-E Debian package (> 8.0) will find us (or nmh) on its own.
(setq mh-progs "/usr/bin/mu-mh"
mh-lib "/usr/share/mailutils/mh"
mh-lib-progs mh-progs))
|