diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2019-02-03 19:09:51 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 19:09:51 +0300 |
commit | 031be7b142ead033203689ce4e8dc906d329e43c (patch) | |
tree | 2f019dab63e8af17d9b9bde763e94e24f380ac8f /src/plugins | |
parent | e4eab3822fe257ed4a044390a04eaba9a126afcd (diff) | |
download | rspamd-031be7b142ead033203689ce4e8dc906d329e43c.tar.gz rspamd-031be7b142ead033203689ce4e8dc906d329e43c.zip |
[Minor] Allow "application/vnd.ms-excel" for "csv" files
Diffstat (limited to 'src/plugins')
-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 6588edcbf..ab2484c34 100644 --- a/src/plugins/lua/mime_types.lua +++ b/src/plugins/lua/mime_types.lua @@ -287,7 +287,7 @@ local full_extensions_map = { {"csh", "application/x-csh"}, {"csproj", "text/plain"}, {"css", "text/css"}, - {"csv", {"text/csv", "text/plain"}}, + {"csv", {"application/vnd.ms-excel", "text/csv", "text/plain"}}, {"cur", "application/octet-stream"}, {"cxx", "text/plain"}, {"dat", {"application/octet-stream", "application/ms-tnef"}}, |