6b7a32
=== modified file 'Mailman/Handlers/Scrubber.py'
6b7a32
--- Mailman/Handlers/Scrubber.py	2018-06-17 23:47:34 +0000
6b7a32
+++ Mailman/Handlers/Scrubber.py	2018-11-10 18:57:54 +0000
6b7a32
@@ -87,6 +87,9 @@
6b7a32
     all = guess_all_extensions(ctype, strict=False)
6b7a32
     if ext in all:
6b7a32
         return ext
6b7a32
+    if ctype.lower == 'application/octet-stream':
6b7a32
+        # For this type, all[0] is '.obj'. '.bin' is better.
6b7a32
+        return '.bin'
6b7a32
     return all and all[0]
6b7a32
 
6b7a32
 
6b7a32