Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (169 - 171 of 332)

Ticket Resolution Summary Owner Reporter
#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

#221 fixed Add email Cc list to the Trac ticket Cc list bas smcbutler
Description

Hi, I'd like to auto-add the Cc: users in an email to the Cc: list on the resulting Trac ticket. Is this possible?

thx for a great plugin!

#223 fixed Incorrectly sets the number of comments bas stas.agarkov@…
Description

email2trac incorrectly sets the number of comments, because it is based on a number of changes to the table ticket_change. trac uses the TicketModule?.grouped_changelog_entries, which returns a list of changes, in which simultaneous changes are grouped into one that is as it appears in the trac. Your code:

## How many changes has this ticket
#
cnum = len(tkt.get_changelog())

Right code:

# How many changes has this ticket
from trac.ticket.web_ui import TicketModule
grouped = TicketModule(self.env).grouped_changelog_entries(tkt, self.db)
cnum = sum(1 for e in grouped) + 1
Note: See TracQuery for help on using queries.