diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-01-29 14:40:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 14:40:47 +0000 |
commit | 69ee9cf38003ca9acf5436b3a8d678387cae57fe (patch) | |
tree | abb8fc63af7b861dfdf7c0693b7606a0d8262428 /src | |
parent | 69795cdfc0f40e12024eff967690733ea9382864 (diff) | |
parent | fd4dfc9c250038751683f513a6674495458a51d4 (diff) | |
download | rspamd-69ee9cf38003ca9acf5436b3a8d678387cae57fe.tar.gz rspamd-69ee9cf38003ca9acf5436b3a8d678387cae57fe.zip |
Merge pull request #2737 from moisseev/mime_types
[Minor] mime_types: Add "text/plain" CT for "csv" extension
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/mime_types.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/mime_types.lua b/src/plugins/lua/mime_types.lua index 206284a25..d53250510 100644 --- a/src/plugins/lua/mime_types.lua +++ b/src/plugins/lua/mime_types.lua @@ -286,7 +286,7 @@ local full_extensions_map = { {"csh", "application/x-csh"}, {"csproj", "text/plain"}, {"css", "text/css"}, - {"csv", "text/csv"}, + {"csv", {"text/csv", "text/plain"}}, {"cur", "application/octet-stream"}, {"cxx", "text/plain"}, {"dat", {"application/octet-stream", "application/ms-tnef"}}, |