Roundup Tracker - Issues

Message5772

Author rouilj
Recipients rouilj
Date 2016-07-07.00:23:52
Message-id <1467851033.71.0.221973536376.issue2550922@psf.upfronthosting.co.za>
In-reply-to
roundup/mailgw.py has the following code:

       # XXX Don't enable. This doesn't work yet.
# 
"[^A-z.]tracker\+(?P<classname>[^\d\s]+)(?P<nodeid>\d+)\@some.dom.ain[^A-z.]"
        # handle delivery to addresses like:tracker+issue25@some.dom.ain
        # use the embedded issue number as our issue
#            issue_re = config['MAILGW_ISSUE_ADDRESS_RE']
#            if issue_re:
#                for header in ['to', 'cc', 'bcc']:
#                    addresses = message.getheader(header, '')
#                if addresses:
#                  # FIXME, this only finds the first match in the
addresses.
#                    issue = re.search(issue_re, addresses, 'i')
#                    if issue:
#                        classname = issue.group('classname')
#                        nodeid = issue.group('nodeid')
#                        break


we should make that work.
History
Date User Action Args
2016-07-07 00:23:53rouiljsetrecipients: + rouilj
2016-07-07 00:23:53rouiljsetmessageid: <1467851033.71.0.221973536376.issue2550922@psf.upfronthosting.co.za>
2016-07-07 00:23:53rouiljlinkissue2550922 messages
2016-07-07 00:23:52rouiljcreate