1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* mail/emacsbug.el (report-emacs-bug): Try to handle some other mail clients.

This commit is contained in:
Glenn Morris 2010-12-07 19:47:27 -08:00
parent ec1b9b17fa
commit 5fe9ebd14e
2 changed files with 12 additions and 1 deletions

View file

@ -288,7 +288,13 @@ usually do not have translators to read other languages for them.\n\n")
report-emacs-bug-send-hook 'mail-send-hook))
((eq mail-user-agent 'mh-e-user-agent)
(setq report-emacs-bug-send-command "mh-send-letter"
report-emacs-bug-send-hook 'mh-before-send-letter-hook)))
report-emacs-bug-send-hook 'mh-before-send-letter-hook))
((eq mail-user-agent 'vm-user-agent)
(setq report-emacs-bug-send-command "vm-mail-send-and-exit"
report-emacs-bug-send-hook 'vm-mail-send-hook))
((eq mail-user-agent 'wl-user-agent)
(setq report-emacs-bug-send-command "wl-draft-send-and-exit"
report-emacs-bug-send-hook 'wl-draft-send-hook)))
(unless report-emacs-bug-no-explanations
(with-output-to-temp-buffer "*Bug Help*"
(princ "While in the mail buffer:\n\n")