Handle (old style) MS-Word attachments

This commit is contained in:
Peter J. Holzer 2019-03-31 21:15:31 +02:00
parent 08784b70fe
commit f543dbc5c8
2 changed files with 9 additions and 0 deletions

View File

@ -62,6 +62,7 @@ def save_part(msg, disposition):
"image/gif": ".gif",
"text/x-c": ".c",
"application/x-perl": ".pl",
"application/msword": ".doc",
}[content_type]
name = msg.get_param("name") or "(data)"

View File

@ -0,0 +1,8 @@
<div class="partouter">
<div class="partheader">
application/msword
</div>
<div class="partinner">
<a href="{{url}}">{{name}}</a>
</div>
</div>