Archived
1
0

srnd: use text/plain as default type

otherwise it fails to parse valid messages
This commit is contained in:
cathugger 2018-12-23 08:34:15 +02:00
parent ef4d45a148
commit fb0c600e3a
No known key found for this signature in database
GPG Key ID: 9BADDA2DAF6F01A8

View File

@ -642,7 +642,11 @@ func read_message_body(body io.Reader, hdr map[string][]string, store ArticleSto
} else if err == nil {
hdr := part.Header
// get content type of part
part_type := hdr.Get("Content-Type")
part_type := strings.TrimSpace(hdr.Get("Content-Type"))
if part_type == "" {
// default if unspecified
part_type = "text/plain"
}
// parse content type
media_type, _, err = mime.ParseMediaType(part_type)
if err == nil {