In VM 8.2.0b, when a message has an HTML part, I can middle-click on
it (vm-mouse-2) to open the HTML part in Chrome. I accomplished this
with the following setting:
(setq vm-mime-external-content-types-alist
'(...
("text/html" "chrome --new-window")
...))
In the latest VM 8.3.x, this still works, but VM also opens Chrome
windows when I don't want, when I press "R" (vm-reply-include-text) or
"F" (vm-followup-include-text). Is there a way to suppress this
additional behavior?
If I comment out the vm-mime-external-content-types-alist line above,
the unwanted behavior stops, but so does the middle-click behavior
that I want to keep.
My other MIME-related settings are as follows:
(setq vm-auto-decode-mime-messages t)
(setq vm-auto-displayed-mime-content-types
'("text/plain" "multipart" "message"))
(setq vm-mime-internal-content-types '("text" "message"))
(setq vm-mime-text/html-handler 'auto-select)
Thank you,
Dan