Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | blaze822: iterate over headers | Christian Neukirchen | 2016-07-14 | 2 | -0/+19 |
| | |||||
* | remove some obsolete stuff | Christian Neukirchen | 2016-07-14 | 2 | -465/+0 |
| | |||||
* | blaze822: add mmap-based mail reader | Christian Neukirchen | 2016-07-14 | 2 | -4/+56 |
| | |||||
* | rfc2045: return 0 when no body is found in blaze822_mime_body | Christian Neukirchen | 2016-07-14 | 1 | -1/+2 |
| | |||||
* | blaze822: remaining fixes in new loop | Christian Neukirchen | 2016-07-14 | 1 | -5/+5 |
| | |||||
* | blaze822: avoid overflow in blaze822_hdr_ | Christian Neukirchen | 2016-07-14 | 1 | -1/+1 |
| | |||||
* | blaze822: rewrite inner loop | Christian Neukirchen | 2016-07-13 | 1 | -44/+58 |
| | | | | | Do nul and crlf clean up first, only when required. Replace line-detection loop with strchr. | ||||
* | unmime: free some things | Christian Neukirchen | 2016-07-13 | 1 | -4/+7 |
| | | | | Not 100% precise yet. | ||||
* | rfc2045: new parameter for blaze822_mime_body to allow freeing of new chunk | Christian Neukirchen | 2016-07-13 | 2 | -5/+10 |
| | |||||
* | blaze822: allow freeing of null pointers | Christian Neukirchen | 2016-07-13 | 1 | -0/+2 |
| | |||||
* | blaze822: blaze822_mem: use body=bodyend instead of body=0 | Christian Neukirchen | 2016-07-13 | 1 | -1/+2 |
| | | | | | Else we lose track of where we are during multipart when there is no body (really a body of length 0). | ||||
* | rfc2045: blaze822_mime_body: zero output fields when no body is there | Christian Neukirchen | 2016-07-13 | 1 | -1/+4 |
| | |||||
* | blaze822: detect too short/empty headers | Christian Neukirchen | 2016-07-13 | 1 | -0/+3 |
| | |||||
* | rfc2047: blaze822_decode_qp: off-by-one in qp decoding | Christian Neukirchen | 2016-07-13 | 1 | -1/+1 |
| | |||||
* | rfc2045: blaze822_multipart: \0 also terminates boundary | Christian Neukirchen | 2016-07-13 | 1 | -1/+1 |
| | |||||
* | blaze822: compression fixes | Christian Neukirchen | 2016-07-13 | 1 | -2/+4 |
| | |||||
* | blaze822: give in and actually unfold the lines | Christian Neukirchen | 2016-07-13 | 1 | -10/+22 |
| | |||||
* | show: free message at end | Christian Neukirchen | 2016-07-13 | 1 | -0/+1 |
| | |||||
* | scan: free message at end | Christian Neukirchen | 2016-07-13 | 1 | -3/+4 |
| | |||||
* | rfc2047: free all things in blaze822_decode_rfc2047 | Christian Neukirchen | 2016-07-13 | 1 | -2/+8 |
| | |||||
* | blaze822: free line in blaze822_loop | Christian Neukirchen | 2016-07-13 | 1 | -0/+1 |
| | |||||
* | blaze822: off by one in blaze822_mem | Christian Neukirchen | 2016-07-13 | 1 | -1/+1 |
| | |||||
* | show: better iterator | Christian Neukirchen | 2016-07-13 | 1 | -2/+2 |
| | |||||
* | scan: print line number | Christian Neukirchen | 2016-07-13 | 1 | -4/+8 |
| | |||||
* | next: plain numbers are now absolute, use +/- prefix for relative | Christian Neukirchen | 2016-07-13 | 1 | -6/+27 |
| | |||||
* | thread: try to keep relative order from input | Christian Neukirchen | 2016-07-13 | 1 | -10/+9 |
| | |||||
* | rfc2045: fix crlf after boundary | Christian Neukirchen | 2016-07-13 | 1 | -1/+3 |
| | |||||
* | blaze822: fix blaze822_mem body start | Christian Neukirchen | 2016-07-13 | 1 | -6/+9 |
| | |||||
* | blaze822: fix blaze822_file return value on error | Christian Neukirchen | 2016-07-13 | 1 | -1/+1 |
| | |||||
* | blaze822_priv.h: add isfws | Christian Neukirchen | 2016-07-13 | 2 | -2/+4 |
| | |||||
* | blaze822_priv.h: macro cleanup | Christian Neukirchen | 2016-07-13 | 3 | -10/+6 |
| | |||||
* | add rfc2045 and multipart decoding | Christian Neukirchen | 2016-07-13 | 4 | -1/+199 |
| | |||||
* | show: fix api usage | Christian Neukirchen | 2016-07-13 | 1 | -12/+2 |
| | |||||
* | blaze822: api refactoring | Christian Neukirchen | 2016-07-13 | 4 | -60/+62 |
| | |||||
* | blaze822: don't prefix first header with nul bytes | Christian Neukirchen | 2016-07-13 | 1 | -111/+73 |
| | | | | | Instead, look for the first header as a special case. This allows us to parse a header as-is without shifting in memory. | ||||
* | scan: tweak date formatting | Christian Neukirchen | 2016-07-13 | 1 | -1/+1 |
| | |||||
* | blaze822: parsing of in-memory messages | Christian Neukirchen | 2016-07-13 | 2 | -0/+132 |
| | |||||
* | blaze822: header cleanup | Christian Neukirchen | 2016-07-13 | 2 | -6/+10 |
| | |||||
* | blaze822: hackfix | Christian Neukirchen | 2016-07-12 | 1 | -1/+1 |
| | |||||
* | next: add offset, also negative | Christian Neukirchen | 2016-07-12 | 2 | -7/+24 |
| | |||||
* | scan: indent with two spaces | Christian Neukirchen | 2016-07-12 | 1 | -3/+3 |
| | |||||
* | scan: tweak output | Christian Neukirchen | 2016-07-12 | 1 | -2/+3 |
| | |||||
* | thread: remove debugging output | Christian Neukirchen | 2016-07-12 | 1 | -6/+0 |
| | |||||
* | list: only show index line if any filter applied | Christian Neukirchen | 2016-07-12 | 1 | -16/+19 |
| | |||||
* | list: count summary with -i | Christian Neukirchen | 2016-07-12 | 1 | -1/+42 |
| | |||||
* | add list | Christian Neukirchen | 2016-07-12 | 2 | -1/+204 |
| | |||||
* | rfc2047: detect iconv_open error properly | Christian Neukirchen | 2016-07-12 | 1 | -3/+1 |
| | |||||
* | rfc2047: suppress common error messages | Christian Neukirchen | 2016-07-12 | 1 | -4/+8 |
| | |||||
* | rfc2047: consistency | Christian Neukirchen | 2016-07-12 | 1 | -2/+5 |
| | |||||
* | rfc2047: better base64 memory bound | Christian Neukirchen | 2016-07-12 | 1 | -1/+1 |
| |