Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (229 - 231 of 332)

Ticket Resolution Summary Owner Reporter
#218 fixed Problem when multiple trac accounts match email address bas Konstantin Ryabitsev <icon@…>
Description

I came across a problem when enabling "ticket_permission_system: trac". If there is more than one account that matches the same email address (e.g. for me it was both "konstantin" and "tracadmin" accounts), then the user lookup fails and email2trac treats emails from me as coming from a non-trac user. This tweak fixes the problem.

  • (a) email2trac.py.in vs. (b) -

    a b  
    339339                users = [ (u,n,e) for (u, n, e) in self.env.get_known_users(self.db)
    340340                        if e and (e.lower() == self.email_addr.lower()) ]
    341341
    342                 if len(users) == 1:
     342                if len(users) >= 1:
    343343                        self.email_from = users[0][0]
    344344                        self.author = users[0][0]
    345345
#53 duplicate Problem with E-Mail Generation bas lerler (add at) chipxonio.de
Description

Hello,

we are using your email2trac and it works mostly fine. Thx for the good work. But we have a problem with the email notification:

If the reporter of a new email2trac ticket is Jack Black (Jack Black <jack.black@…) 3 mails are sent back, one to the reporter (clear), one to the owner (set via option) and one extra mail to black@…

Example from our mailserver:

Mar 13 13:12:21 svn postfix/smtp[26508]: CBEC438117D7: 
to=<black@example.com>, relay=smtprelay[192.168.70.142]:25, 
delay=0.01, delays=0/0/0.01/0, dsn=2.0.0, status=sent (250 2.0.0 Ok: 
queued as DEB24104B7C4)
Mar 13 13:12:21 svn postfix/smtp[26508]: CBEC438117D7: 
to=<jack.black@example.com>, relay=smtprelay[192.168.70.142]:25, 
delay=0.01, delays=0/0/0.01/0, dsn=2.0.0, status=sent (250 2.0.0 Ok: 
queued as DEB24104B7C4)
Mar 13 13:12:21 svn postfix/smtp[26508]: CBEC438117D7: 
to=<component_owner@example.com>, relay=smtprelay[192.168.70.142]:25, 
delay=0.01, delays=0/0/0.01/0, dsn=2.0.0, status=sent (250 2.0.0 Ok: 
queued as DEB24104B7C4)

It seems that email2trac parses the name of the reporter and tries to guess a username from it.

Any idea?

#73 fixed Project name is no longer optional (regression in 0.30) bas email2trac@…
Description

Using email2trac.conf:

[DEFAULT]
project: /var/www/cgi-bin/garage/trac/support

email2trac -n -f email2trac.conf produces error message:

No Trac project is defined in the email2trac config file.

Currently, the workaround is to use email2trac.conf:

[DEFAULT]
project: /var/www/cgi-bin/garage/trac/support

[support]
project: /var/www/cgi-bin/garage/trac/support

with the command email2trac -n -f email2trac.conf -p support

If the old behavior is no longer supported, then the documentation needs to be updated accordingly.

Note: See TracQuery for help on using queries.