MH-E with any Emacsen
Getting Connected
GNEWS with any Emacsen
Since release 4.40, VM has supported the citation interface required by Supercite. But since the interface has changed recently the details of getting connected differ with the version of VM you are using.
If you are running any release of VM after 4.40, you can add the
following to your `.emacs
' to connect Supercite with VM:
(add-hook 'mail-yank-hooks 'sc-cite-original)
Note that if you are using Emacs 18 or Epoch 4, you will not have the
add-hook
function. See Emacs 18 MUAs for details on how to
proceed without add-hook
.
Since version 5.34, VM has supported the newer mail-citation-hook
interface, but mail-yank-hooks
is still being supported for
backward compatibility. If you are running a newer version of VM and
you want to maintain consistency with other MUAs, use this bit of code
instead:
(add-hook 'mail-citation-hook 'sc-cite-original)