plugins/base: disallow replying to text/html parts
This commit is contained in:
parent
ae8658f468
commit
be3ab9bdd5
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ func handleReply(ctx *koushin.Context) error {
|
|||
return fmt.Errorf("failed to parse part Content-Type: %v", err)
|
||||
}
|
||||
|
||||
if !strings.HasPrefix(strings.ToLower(mimeType), "text/") {
|
||||
if !strings.EqualFold(mimeType, "text/plain") {
|
||||
err := fmt.Errorf("cannot reply to %q part", mimeType)
|
||||
return echo.NewHTTPError(http.StatusBadRequest, err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue