Next: , Previous: , Up: Subsystems  


Q4.0.11: How do I make VM or mh-e display graphical smilies?

For mh-e use the following:

(add-hook 'mh-show-mode-hook '(lambda ()
                                (smiley-region (point-min)
                                               (point-max))))

WJCarpenter writes: For VM use the following:

       (autoload 'smiley-region "smiley" nil t)
       (add-hook 'vm-select-message-hook
                 '(lambda ()
                    (smiley-region (point-min)
                                   (point-max))))

For tm use the following:

(autoload 'smiley-buffer "smiley" nil t)
(add-hook 'mime-viewer/plain-text-preview-hook 'smiley-buffer)