mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
The bug[1] would explain all the bounces and unsubscriptions, so patch it manually until upstream gets it sorted. [1] https://gitlab.com/mailman/mailman/-/issues/636
11 lines
499 B
Diff
11 lines
499 B
Diff
--- a/usr/lib/python3.10/site-packages/mailman/handlers/avoid_duplicates.py
|
|
+++ b/usr/lib/python3.10/site-packages/mailman/handlers/avoid_duplicates.py
|
|
@@ -113,7 +113,3 @@
|
|
newrecips.add(r)
|
|
# Set the new list of recipients. XXX recips should always be a set.
|
|
msgdata['recipients'] = list(newrecips)
|
|
- # RFC 2822 specifies zero or one CC header
|
|
- del msg['cc']
|
|
- if cc_addresses:
|
|
- msg['CC'] = COMMASPACE.join(cc_addresses.values())
|