Handle Perl attachments

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

View File

@ -61,6 +61,7 @@ def save_part(msg, disposition):
"application/x-gzip": ".gz", # more likely tar.gz, but we can't know without looking into it which we ain't
"image/gif": ".gif",
"text/x-c": ".c",
"application/x-perl": ".pl",
}[content_type]
name = msg.get_param("name") or "(data)"

View File

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