Mail to a list with a hyphen in its name languishes
forever in
qfiles/maildir. The culprin might be in MaildirRunner.py
# We only care about the listname and the subq as in
listname@ or
# listname-request@
lre = re.compile(r"""
^ # start of string
(?P<listname>[^-@]+) # listname@ or listname-subq@
(?: # non-grouping
- # dash separator
(?P<subq>[^-+@]+) # everything up to + or - or @
)? # if it exists
""", re.VERBOSE | re.IGNORECASE)
How about list-name@?