Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (208 - 210 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
#219 fixed Option to detect valid users when using a default_domain and no email on settings bas sto@…
Description

At our installation we are using email_default_domain (or smtp_default_domain) for all users; that way no one has to set their email_address on their preferences, but when they open a ticket using email2trac the system believes that they are not valid users.

I'm attaching a patch to enable the use of a email_default_domain on the email2trac configuration to avoid that case; with the patch if someone with an address of the form USER@DEFAULT_DOMAIN sends a message and there is an entry for USER on the session table then the ticket is created by USER.

Note that the patch does not apply cleanly to the current trunk because of the changeset:481, but the fix is trivial... ;)

#220 fixed Having Issue in the installation procedure for fetchmail bas velappanv@…
Description

Hi bas,

I have been installed this plugin in /usr/local/bin, also modified the email2trac.conf with required values.

When I tested the with email2trac --project projectname > msg.txt.

Its getting hanged.

I have enclosed the conf file and .fecthmail.rc for your reference.

Please let me know Where I am going wrong here.

emai2trac.conf

[DEFAULT]

project: /opt/tracprojects/projectname

debug: 0

umask: 022

spam_level: 2

reply_all : 0

mailto_link: 0

umask: 022

email_header: 0

trac_version: 0.11

enable_syslog : 1

alternate_notify_template :

alternate_notify_template_update :

drop_spam : 0

verbatim_format: 1

strip_signature: 0

email_quote: >

strip_quotes: 0

ignore_trac_user_settings: 0

black_list: MAILER-DAEMON@

drop_alternative_html_version: 1

ticket_update:0

ticket_update_by_subject:0

ticket_update_by_subject_lookback:30

tmpdir: /tmp

Fetchmail:

  ''' '''server mail.server.com''''''
    proto POP3
    user trac@mailserve.com
    pass password
    mda "/usr/bin/email2trac --project Projectname

Thanks for your reply in advance.

Thanks

Vela.Velappan

Note: See TracQuery for help on using queries.