Custom Query (332 matches)
Results (91 - 93 of 332)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#305 | fixed | email2trac raises exception for ticket update when agilo is installed | bas | smcclure@… |
Description |
I have trac version 0.12.0 and agilo 0.9.5. When I ran email2trac to update a ticket I had a traceback. I fixed it with this patch: $ diff email2trac email2trac.orig 982,987d981 < # Agilo specific modifications < from agilo.utils.config import AgiloConfig < if AgiloConfig(self.env).is_agilo_enabled: < from agilo.ticket.model import AgiloTicket < tkt = AgiloTicket(self.env, self.id, self.db) < 1217,1222d1210 < # Agilo specific modifications < from agilo.utils.config import AgiloConfig < if AgiloConfig(self.env).is_agilo_enabled: < from agilo.ticket.model import AgiloTicket < tkt = AgiloTicket(self.env) < |
|||
#280 | invalid | Email2trac receiving email | bas | peterdaly@… |
Description |
Hi, I can't seem to figure out how to setup the sever to recieve emails from our external mail server to our internal dns / trac server. I have the sendmail configured on the trac server to work with the commandline test in the email2trac install notes. This creates a ticket and i get an email response but how can I set it up to get trac to retrieve replies from emails? I am currently using thunderbird on centos 5.4. Appreciate any help or links to other how tos Peter |
|||
#299 | fixed | Email2trac should not set the resolution attribute when creating tickets | bas | ruediger.kupper@… |
Description |
What happens: When creating tickets, email2trac sets the default values for ticket attributes, including the "resolution" attribute. The default value for the "resolution" attribute is "fixed". This leads to the rather strange effect of a new ticket being displayed as: "Ticket #<num> (new defect: fixed)" What should happen: email2trac does not set the "resulution" attribute when creating new tickets (that's what trac does when using the web interface). After all, the ticket is not resolved yet. The ticket will then be displayed as: "Ticket #<num> (new defect) |