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 || |
| 88 | strip_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 | {{{ |
| 91 | strip_signature : 1 |
| 92 | }}} |
| 93 | |
| 94 | use_textwrap:: |
| 95 | When enabled it will break a lines greater then the the number specified, eg: |
| 96 | {{{ |
| 97 | use_textwrap : 40 |
| 98 | }}} |
| 99 | |
| 100 | input: |
| 101 | {{{ |
| 102 | This is an example of a line that has more then 40 characters |
| 103 | }}} |
| 104 | |
| 105 | output: |
| 106 | {{{ |
| 107 | This is an example of a line that has |
| 108 | more then 40 characters |
| 109 | }}} |
| 110 | |