/etc/emacs/site-start.d/50gnus-bonus-el.el is in gnus-bonus-el 35.2ubuntu1.
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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | ;; -*-emacs-lisp-*-
;;
;; Emacs startup file for the Debian GNU/Linux gnus-bonus-el package
;; The gnus-bonus-el package follows the Debian/GNU Linux 'emacsen' policy and
;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
;; xemacs19, emacs20, xemacs20...). The compiled code is then
;; installed in a subdirectory of the respective site-lisp directory.
(cond
((not (file-exists-p "/usr/share/emacs/site-lisp/gnus-bonus-el"))
(message "Package gnus-bonus-el removed but not purged. Skipping setup."))
((not (file-exists-p (concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/gnus-bonus-el/nntodo.elc")))
(message "Package gnus-bonus-el not fully installed. Skipping setup."))
(t
(debian-pkg-add-load-path-item
(concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/gnus-bonus-el"))
;; autoloads for gnus-junk.el
(autoload 'gnus-junk-complain "gnus-junk"
"Mail a complaint about next messages to (hopefully) relevant people."
t)
;; autoloads for gnus-pers.el
(autoload 'gnus-personality-init "gnus-pers"
"Install Personality functionality into message mode."
t)
;; autoloads for gnus-eyecandy.el
(autoload 'gnus-group-line-add-icon "gnus-eyecandy"
"Highlight the current line according to `gnus-group-icon-list'."
nil)
;; autoloads for gnus-filterhist.el
(autoload 'gnus-filter-history "gnus-filterhist"
"Create a buffer *Filter History* with the results of the latest nnmail split."
t)
))
|