Opened 11 years ago
Last modified 8 years ago
#297 assigned enhancement
Add support for ticket-specific email addresses via wildcards
Reported by: | eu@… | Owned by: | bas |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | email2trac | Version: | |
Keywords: | Cc: |
Description (last modified by bas)
Currently, there is one e-mail address and bug # (and other information) is parsed from the subject field. It would be nice also to support the configuration of wildcard e-mail addresses, one address per issue, like bug243-trac@domain or 243@bugs.domain and such (configured via format string, and via wildcards in the MTA config). (The subject field would be perhaps added on the top of the comment, or discarded)
It would be easier to cc bug mails (to someone not on trac, and to trac itself), without requiring some particular subject text, and the conversation could seamlessly happen over e-mail and web combined.
Notification about ticket changes could be sent with the sender's address Diplayed User Name <234@bugs.domain> (this is what launchpad does), or with the reply-to field modified accordingly.
Attachments (0)
Change History (16)
comment:1 Changed 11 years ago by bas
- Status changed from new to assigned
- Version 2.4.2 deleted
comment:2 Changed 11 years ago by bas
Do you know how to setup the MTA for this kind of setup?
comment:3 Changed 11 years ago by eu@…
For exim at least, the router would accept some wildcard address (see e.g. http://www.datadisk.co.uk/html_docs/exim/generic_router_options.htm).
I thought, as a quick hack before this would be handled at email2trac level, that the message would be consumed by an intermediate script, which would parse the To: part, rewrite the subject line (e.g. prepend #123:) and the pipe it further down to email2trac, which would get the ticket number from the subject field as usual.
The notification part could be (probably) handled by AnnouncerPlugin, so notification for each ticket/wiki page etc would have the From: set to that special address.
comment:4 Changed 11 years ago by bas
I just found the settings for postfix and have set the:
- recipient_delimiter = +
Now i can receive emails has email2trac+123@…. As you said i can parse this a ticket number: 123. Thanks for the suggestion. I have to find out how to set the reply-to/From address. I will take a lookk at the AnnouncerPlugin?.
comment:5 Changed 11 years ago by anonymous
The most flexible would be to have email2trac accept options like --ticket=... and so on, which would switch off subject parsing, and provide in the disitrbution some sample scripts for doing the parse and calling email2trac which admins would only adjust for their needs.
I added ticket to AnnouncerPlugin to support generated sender's address.
comment:6 Changed 11 years ago by bas
I can easily add an option --ticket. Do you want to parse the email address and then call email2trac with this option? I also like the email_adress+ticket_id approach.
With example scripts you mean how to setup your MTA, eg postfix, exim.
comment:7 follow-ups: ↓ 8 ↓ 9 Changed 11 years ago by eu@…
Example scripts: I meant parsing the From: address and calling email2trac with appropriate options afterwards. It is unlikely there will be a one size fits all solution: you like address+number@..., I would prefer number@... for instance, and other sites might need still something else.
Such a script, possibly locally adapted, would call email2trac and pipe it the rest of its input. I will try to cook something up.
comment:8 in reply to: ↑ 7 Changed 11 years ago by bas
Replying to eu@…:
Example scripts: I meant parsing the From: address and calling email2trac with appropriate options afterwards. It is unlikely there will be a one size fits all solution: you like address+number@..., I would prefer number@... for instance, and other sites might need still something else.
Such a script, possibly locally adapted, would call email2trac and pipe it the rest of its input. I will try to cook something up.
Did you succeed?
For the address + id i am using this code:
## Some code for email + ticket id # try: print self.parameters.project_name print 'Delivered To', m['Delivered-To'] print self.parameters.to_parse_address_delimiter id = m['Delivered-To'].split(self.parameters.to_parse_address_delimiter)[1] print id id = id.split('@')[0] print id except KeyError, detail: pass
comment:9 in reply to: ↑ 7 Changed 11 years ago by bas
Replying to eu@…:
Example scripts: I meant parsing the From: address and calling email2trac with appropriate options afterwards. It is unlikely there will be a one size fits all solution: you like address+number@..., I would prefer number@... for instance, and other sites might need still something else.
Such a script, possibly locally adapted, would call email2trac and pipe it the rest of its input. I will try to cook something up.
any progress?
comment:10 Changed 10 years ago by bas
In 631:
comment:11 Changed 10 years ago by bas
In 633:
comment:12 Changed 10 years ago by bas
- Description modified (diff)
Can you test it? Both formats are supported.
comment:13 Changed 10 years ago by bas
Thanks to Peter Suter for the announcer code example. I just rewrote it and it can sets the reply_to address. see:
comment:14 follow-up: ↓ 15 Changed 9 years ago by szybalski@…
I've being able to setup procmail to forward subdomain 12345@… to incoming@… and subject line #12345:
http://lucasmanual.com/mywiki/procmail
This allows you to use existing email2trac functionality just by including the bug # in the subject line. The only thing left is setting up the incoming@… using existing email2trac documentation.
comment:15 in reply to: ↑ 14 Changed 9 years ago by bas
Replying to szybalski@…:
I've being able to setup procmail to forward subdomain 12345@… to incoming@… and subject line #12345:
http://lucasmanual.com/mywiki/procmail
This allows you to use existing email2trac functionality just by including the bug # in the subject line. The only thing left is setting up the incoming@… using existing email2trac documentation.
Thanks for your documentation on this subject!!
comment:16 Changed 8 years ago by bas
Did some optimization for email2trac wildcard support see:
- Change [671]
Interesting idea.