Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyclean.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -1383,7 +1383,7 @@ def __init__(self):
'^linux\.', '^lucky\.freebsd', '^gnus\.',
'\.lists\.freebsd\.']
self.bin_allowed = self.regex_compile(bin_allowed)
html_allowed = ['^pgsql\.', '^relcom\.', '^gmane', 'microsoft',
html_allowed = ['^pgsql\.', '^relcom\.', '^gmane\.', '^microsoft\.',
'^mailing\.', '^gnus\.']
self.html_allowed = self.regex_compile(html_allowed)
# Exclude from all EMP filters.
Expand All@@ -1397,7 +1397,7 @@ def __init__(self):
'^alt\.prophecies\.nostradamus']
self.ihn_exclude = self.regex_compile(ihn_exclude)
# Exclude groups from PHN filter.
phn_exclude = ['^alt\.privacy\.']
phn_exclude = ['^alt\.privacy\.', '^news\.lists\.filters']
self.phn_exclude = self.regex_compile(phn_exclude)
# Bad posting-hosts.
bad_ph = ['newsguy\.com', 'tornevall\.net']
Expand Down