Changes between Version 21 and Version 22 of Email2tracConfiguration


Ignore:
Timestamp:
04/24/07 14:14:17 (17 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Email2tracConfiguration

    v21 v22  
    8181verbatim_format::
    8282 Default this option is enabled. When mail is inserted in the trac ticket system then we put the plain text between
    83 '{{{' ''body_text' '}}}'
     83'{{{' ''body_text'' '}}}'. Then trac does not process the body_text. You can disable this option in [wiki:Email2tracConfiguration email2trac.conf]:
     84{{{
     85verbatim_format : 0
     86}}}
    8487
    85  || 1 || OPTIONAL, default: 1, if unset then do not use format: ''{{{'' mail y text ''}}]'' ||
    86 || strip_signature || 1 || OPTIONAL, It will try to remove the user signature from the mail, default: 0 ||
     88strip_signature::
     89 When enabled it will try to strip the signatures from the email.  It scans the message for a ''-- '' line. All lines after this line will be skipped.
     90{{{
     91strip_signature : 1
     92}}}
     93
     94use_textwrap::
     95  When enabled it will break a lines greater then the the number specified, eg:
     96{{{
     97use_textwrap : 40
     98}}}
     99
     100input:
     101{{{
     102This is an example of a line that has more then 40 characters
     103}}}
     104
     105output:
     106{{{
     107This is an example of a line that has
     108more then 40 characters
     109}}}
     110
    87111|| use_textwrap    || 70 || OPTIONAL. It will wrap line longer then 70 chars. default: 0/off ||