Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (301 - 303 of 332)

Ticket Resolution Summary Owner Reporter
#208 fixed Ticket URL is not absolute in sent ticket notification bas mark_kids@…
Description
Hi,

Don't know if this is related to the trac 0.12 compatibility of your script.

But the ticket URL in the notification doesn't give the absolute URL.

Basically what I did was I've created a ticket using my email and it worked.
The problem is the link to the ticket is broken.



    Type:  defect               |       Status:  new
Priority:  major                |   Resolution:  fixed
--------------------------------+---------------------------------------
--------------------------------+----
 {{{


  this is a test


 }}}

--
Ticket URL: </ticket/39>
#104 fixed tiny syntax error in email2trac.py.in bas anonymous
Description
Index: email2trac.py.in
===================================================================
--- email2trac.py.in	(revision 233)
+++ email2trac.py.in	(working copy)
@@ -687,7 +687,7 @@
 			else:
 				value = field.get('value')
 				options = field.get('options')
-				if value and options and value not in options
+				if value and options and value not in options:
 					value = options[int(value)]
 
 			if self.DEBUG > 10:
#256 fixed to env or not to env .. that is the question.. bas edward.b.matheson@…
Description

So I am getting this in the output logs

2011-07-28 13:52:54,438 email2trac atol: Loading environment /var/trac/atol 2011-07-28 13:52:54,577 email2trac atol: Trac project does not exists: /var/trac/atol

  • email2trac.conf
    [DEFAULT]
    parentdir: /var/trac
    project: /var/trac/atol
    debug: 1
    log_type: file
    log_level: DEBUG
    log_file: /tmp/email2trac.log
    umask: 022
    spam_level: 5
    reply_all : 0
    mailto_link: 0
    umask: 022
    email_header: 0
    trac_version: 0.12
    # enable_syslog : 1
    alternate_notify_template :
    alternate_notify_template_update :
    drop_spam : 0
    verbatim_format: 1
    strip_signature: 1
    email_quote: >
    strip_quotes: 0
    ignore_trac_user_settings: 0
    black_list: MAILER-DAEMON@
    drop_alternative_html_version: 1
    ticket_update: 1
    strip_signature: 1
    html2text_cmd: /usr/bin/html2text -nobs
    trac_version: 0.12
    
    [atol]
    d318support_component : Branch_Support
    d318support_ttd : D318-support
    
    atolsupport_component : ATOLNet
    atolsupport_ttd : atol-support 
    
  • aliases
    trac: "| /usr/local/bin/email2trac --project=atol"
    d318-support: "| /usr/local/bin/email2trac --project=atol --ticket_prefix=d318support"
    atol-support: "| /usr/local/bin/email2trac --project=atol --ticket_prefix=atolsupport"
    
  • using trac .0.12.2
  • I can't get any of the aliases working.. help?
Note: See TracQuery for help on using queries.