diff options
| author | bwarsaw | 2002-10-25 22:33:33 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-10-25 22:33:33 +0000 |
| commit | 3d545b226f7f809e40ef2669455d772542164ed4 (patch) | |
| tree | bb7aaa16400f1ce331395e324784204a29e6683c | |
| parent | 30f249fb3289290bacbf7c271f271291974aa02a (diff) | |
| download | mailman-3d545b226f7f809e40ef2669455d772542164ed4.tar.gz mailman-3d545b226f7f809e40ef2669455d772542164ed4.tar.zst mailman-3d545b226f7f809e40ef2669455d772542164ed4.zip | |
DEFAULT_PASS_MIME_TYPES: Set the default to something that seems
sensible based on Chuq's (and my) experience with MimeDel.
| -rw-r--r-- | Mailman/Defaults.py.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index bbc63b3e0..0a34cbe16 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -898,7 +898,9 @@ DEFAULT_FILTER_CONTENT = 0 DEFAULT_FILTER_MIME_TYPES = [] # DEFAULT_PASS_MIME_TYPES is a list of MIME types to be passed through. Format is the same as DEFAULT_FILTER_MIME_TYPES -DEFAULT_PASS_MIME_TYPES = [] +DEFAULT_PASS_MIME_TYPES = ['multipart/mixed', + 'multipart/alternative', + 'text/plain'] # Whether text/html should be converted to text/plain after content filtering # is performed. Conversion is done according to HTML_TO_PLAIN_TEXT_COMMAND |
