VM

Merge lp:~akwm/vm/digest-explicit-header into lp:vm

Proposed by Arik
Status: Merged
Merged at revision: 941
Proposed branch: lp:~akwm/vm/digest-explicit-header
Merge into: lp:vm
Diff against target: 13 lines (+2/-1)
1 file modified
lisp/vm-digest.el (+2/-1)
To merge this branch: bzr merge lp:~akwm/vm/digest-explicit-header
Reviewer Review Type Date Requested Status
VM development team Pending
Review via email: mp+33525@code.launchpad.net

Description of the change

since the problem with digest messages was with other clients, explicitly setting the content type to the default type will assist mail clients (gmail being one) to properly display digest messages. The default for multipart/digest messages is message/rfc822 where, it seems, clients might assume the non-specific multipar/{whatever} of text/plain

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lisp/vm-digest.el'
2--- lisp/vm-digest.el 2010-08-19 19:05:20 +0000
3+++ lisp/vm-digest.el 2010-08-24 13:38:39 +0000
4@@ -132,7 +132,8 @@
5 (insert "\n--" boundary "--\n")
6 (while boundary-positions
7 (goto-char (car boundary-positions))
8- (insert "\n--" boundary "\n\n")
9+ (insert "\n--" boundary "\n")
10+ (insert "Content-Type: message/rfc822\n\n")
11 (setq boundary-positions (cdr boundary-positions)))
12 (goto-char start)
13 (setq n (length message-list))

Subscribers

People subscribed via source and target branches

to all changes: