/usr/share/doc/vm/examples/dot.abbrevs is in vm 8.2.0b-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 13 14 15 16 | ;-*-emacs-lisp-*-
;
; Rather than editing abbrevs files directly, it's better to use
; commands like M-X define-mail-abbrev and M-X edit-abbrevs, then save
; them back with M-X write-abbrev-file
;
; (err, this may not be the best way to do it. Watch this space.)
;
(define-abbrev-table 'mail-abbrevs '(
("debian-bugs-done" "debian-bugs-done@pixar.com" mail-abbrev-expand-hook 0)
("debian-announce" "debian-announce@pixar.com" mail-abbrev-expand-hook 0)
("debian-user" "debian-user@pixar.com" mail-abbrev-expand-hook 0)
("debian-devel" "debian-devel@pixar.com" mail-abbrev-expand-hook 0)
("rjk" "Richard Kettlewell <richard@elmail.co.uk>" mail-abbrev-expand-hook 0)
))
|