From 8e1fa66e450862d085165f0425a48a219ac974ad Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Wed, 15 Jun 2016 17:54:26 +0300 Subject: [PATCH] [Minor] Add `application/octet-stream` mime type for `pdf` extension The `application/octet-stream` mime type is commonly used for `pdf` files by variety of automated mailing systems. --- conf/modules.d/mime_types.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/conf/modules.d/mime_types.conf b/conf/modules.d/mime_types.conf index eb00e04c7..e4c80e0a1 100644 --- a/conf/modules.d/mime_types.conf +++ b/conf/modules.d/mime_types.conf @@ -27,6 +27,9 @@ mime_types { "text/plain", "text/rfc822-headers" ]; - pdf = "application/pdf"; + pdf = [ + "application/octet-stream", + "application/pdf" + ]; } } -- 2.39.5