MU-CITE for Debian ------------------ To call MU-CITE's citing filter function from emacsen mail and news readers' reply functions, put the following lines in your ~/.emacs: ;; for Wanderlust, MH-E, etc. (add-hook 'mail-citation-hook 'mu-cite-original) ;; for Gnus (setq message-cite-function 'mu-cite-original) ;; for Mew (add-hook 'mew-cite-hook (lambda () (mu-cite-original) (exchange-point-and-mark) ;; for highlighting )) (setq mew-summary-reply-with-citation-position 'body) ;; for citation with "> " instead of "name> " (setq mu-cite-prefix-format '("> ")) (setq mu-cite-cited-prefix-regexp nil) ;; for citation header with date and from, e.g. ;; On Mon, 05 Oct 2020 17:03:31 +0900, ;; Full Name wrote: (setq mu-cite-top-format '("On " date ",\n" from " wrote:\n")) See also examples/dot.emacs for more customization, e.g. "On October 5, 2020, at 5:03 p.m., Full Name wrote:". -- Tatsuya Kinoshita , Sat, 31 Oct 2020 18:52:46 +0900