Custom Query (332 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (154 - 156 of 332)

Ticket Resolution Summary Owner Reporter
#19 fixed mysterious problem bas "James Switzer" <greatflamingfoo@…>
Description
for some reason the run_email2trac wrapper is failing. the email2trac
script works with the same input if run as root.

$run_email2trac --project=dummy < dummy.eml
returns 254

-------- /etc/email2trac.conf -----------
[dummy]
project: /home/scdev/trac/projects/dummy
debug: 1
umask: 022
spam_level: 3
reply_all: 1
mailto_link: 0
umask: 022
email_comment: >
email_header: 0
trac_version: 0.10
enable_syslog: 1
alternate_notify_template:
drop_spam: 0
verbatim_format: 1
strip_signature: 0
#226 fixed More versatile workflow : compatibility with AdvancedTicketWorkflowPlugin bas Frédéric DUARTE <f.duarte@…>
Description

It would be useful to get email2trac aware of the 'workflow' entry of trac.ini's [ticket] section.

It would help to trigger custom workflow operations that are not handled by Trac's ConfigurableTicketWorkflow.

#106 fixed More versatile support for Mac attachments bas ben@…
Description

I implemented three new configuration options, having to do with treatment of attachments that include Mac-specific data.

The attached diff is relative to the changes I submitted in #105.

binhex

The BinHex encoding format is deprecated (in favor of AppleDouble MIME, see RFC 1740), but some older clients might still be using it. A file encoded with BinHex is annoying to decode unless you are on a Mac.

The binhex option can be set to one of:

  • 'keep', in which case attachments encoded with BinHex will be included in the ticket
  • 'warn', in which case attachments encoded with BinHex will be ignored, but a warning message to that effect will be included in the ticket description
  • 'drop', in which case attachments encoded with BinHex will be silently ignored

The default is 'warn'.

applesingle

Same options and meaning as for binhex option above.

appledouble

The AppleDouble encoding format is the recommended way to include Mac-specific data in a MIME message, as per RFC 1740. A file encoded with AppleDouble can easily be presented usefully on all platforms.

The applesingle option can be set to one of:

  • 'keep', in which case both the platform-neutral data and the Mac-specific data will be included in the ticket (as two separate attachments)
  • 'warn', in which case only the platform-neutral file data will be included in the ticket. Mac-specific data will be left out, but a warning message will be included in the ticket description.
  • 'strip', in which case only the platform-neutral file data will be included in the ticket. Mac-specific data will be left out with no warning.

The default is 'warn'.

Note: See TracQuery for help on using queries.