| 2017-08-24 |
Ralph Corderoy | mhparse.c: Correct comment; si_val is the `anonymous... |
blob | commitdiff | raw |
| 2017-08-23 |
Ralph Corderoy | Flip logic, moving goto from else- to then-block. |
blob | commitdiff | raw | diff to current |
| 2017-08-23 |
Ken Hornstein | Make sure we return the descriptor from the file handle... |
blob | commitdiff | raw | diff to current |
| 2017-08-22 |
Ralph Corderoy | Reformat else-if that are split over two or more lines... |
blob | commitdiff | raw | diff to current |
| 2017-08-19 |
David Levine | Protect fileno() call against NULL argument. |
blob | commitdiff | raw | diff to current |
| 2017-08-13 |
Ralph Corderoy | m_getfld() et al: Replace with m_getfld2(), etc., in... |
blob | commitdiff | raw | diff to current |
| 2017-08-11 |
Ralph Corderoy | mhparse.c: Cast ptrdiff_t from subtraction to long. |
blob | commitdiff | raw | diff to current |
| 2017-08-09 |
Ralph Corderoy | mhparse.c: Use constant indent for second line of messages. |
blob | commitdiff | raw | diff to current |
| 2017-08-09 |
Ralph Corderoy | Teach gcc(1) that adios() and friends take printf formats. |
blob | commitdiff | raw | diff to current |
| 2017-05-29 |
Ralph Corderoy | sizeof char is always 1, so don't bother to divide... |
blob | commitdiff | raw | diff to current |
| 2017-05-26 |
Ralph Corderoy | uip/mhparse.c: Fix body starting a byte too soon when... |
blob | commitdiff | raw | diff to current |
| 2017-05-15 |
Ralph Corderoy | uip/mhcachesbr.c: Move exported symbols to existing... |
blob | commitdiff | raw | diff to current |
| 2017-05-15 |
Ralph Corderoy | sbr/m_mktemp.h: Move remaining prototypes from h/protot... |
blob | commitdiff | raw | diff to current |
| 2017-05-15 |
Ralph Corderoy | Create and use header file for uip/mhfree.c's exports. |
blob | commitdiff | raw | diff to current |
| 2017-05-07 |
Ralph Corderoy | Split some comma-operator terms into separate statements. |
blob | commitdiff | raw | diff to current |
| 2017-05-07 |
Ralph Corderoy | Make many m_getfld() buffer parameters NMH_BUFSIZ big. |
blob | commitdiff | raw | diff to current |
| 2017-05-01 |
Ralph Corderoy | mhparse.c: Remove a couple of else after continue. |
blob | commitdiff | raw | diff to current |
| 2017-04-28 |
Ralph Corderoy | Fix spelling in C comments. |
blob | commitdiff | raw | diff to current |
| 2017-04-22 |
Ralph Corderoy | Replace "/*\n * " with "/* " at the start of a file. |
blob | commitdiff | raw | diff to current |
| 2017-04-22 |
Ralph Corderoy | Remove leading and trailing blank lines from code. |
blob | commitdiff | raw | diff to current |
| 2017-04-17 |
David Levine | Use stat(3) instead of lstat(3), to dereference symboli... |
blob | commitdiff | raw | diff to current |
| 2017-04-17 |
Ralph Corderoy | Change admonish(NULL, "foo") to inform("foo, continuing... |
blob | commitdiff | raw | diff to current |
| 2017-04-17 |
Ralph Corderoy | Replace advise(NULL, fmt, ...) with inform(fmt, ...). |
blob | commitdiff | raw | diff to current |
| 2017-03-18 |
David Levine | Don't let parse_mime() try to parse a directory. |
blob | commitdiff | raw | diff to current |
| 2017-02-27 |
David Levine | Added /* FALLTHRU */ comments where gcc 7 noticed their... |
blob | commitdiff | raw | diff to current |
| 2016-12-10 |
Ralph Corderoy | Rename recently added ToLower() to to_lower(). |
blob | commitdiff | raw | diff to current |
| 2016-12-08 |
David Levine | Replaced !iscntrl() with isprint(). |
blob | commitdiff | raw | diff to current |
| 2016-11-13 |
Ralph Corderoy | Replace many add(s, NULL) with mh_xstrdup(s). |
blob | commitdiff | raw | diff to current |
| 2016-11-08 |
David Levine | Removed unused global from MIME parser. |
blob | commitdiff | raw | diff to current |
| 2016-11-08 |
David Levine | Initialize mhparse global for each message. |
blob | commitdiff | raw | diff to current |
| 2016-11-06 |
David Levine | Plug memory leak with parameter continuations. |
blob | commitdiff | raw | diff to current |
| 2016-10-22 |
Ralph Corderoy | Use ToLower() instead of loop. |
blob | commitdiff | raw | diff to current |
| 2016-10-22 |
Ralph Corderoy | Don't need to cast to `char *' for free(3) these days. |
blob | commitdiff | raw | diff to current |
| 2016-10-21 |
Ralph Corderoy | Replace `if (p) free(p)' with `mh_xfree(p)'. |
blob | commitdiff | raw | diff to current |
| 2016-10-21 |
Ralph Corderoy | Add FIXME raising if iscntrl(3) test should be based... |
blob | commitdiff | raw | diff to current |
| 2016-10-21 |
Ralph Corderoy | Assume POSIX ctype.h; don't vet tolower()'s parameter. |
blob | commitdiff | raw | diff to current |
| 2016-10-21 |
David Levine | Fixed MIME parser so it can read binary content. |
blob | commitdiff | raw | diff to current |
| 2016-10-21 |
Ralph Corderoy | Don't `else' after goto. Simplify control flow. |
blob | commitdiff | raw | diff to current |
| 2016-10-20 |
Ralph Corderoy | Don't `else' after return. Simplify control flow. |
blob | commitdiff | raw | diff to current |
| 2016-10-20 |
Ken Hornstein | Rototill credentials code so that we only prompt for... |
blob | commitdiff | raw | diff to current |
| 2016-10-18 |
Ralph Corderoy | Replace getcpy() with mh_xstrdup() where the string... |
blob | commitdiff | raw | diff to current |
| 2016-10-17 |
Ralph Corderoy | Replace NEW() then memset() of 0 with NEW0(). |
blob | commitdiff | raw | diff to current |
| 2016-10-16 |
Ralph Corderoy | Use mh_xstrdup() instead of getcpy() for a string constant. |
blob | commitdiff | raw | diff to current |
| 2016-10-16 |
Ralph Corderoy | Add NEW(p) that sets p to mh_xmalloc'd memory sized... |
blob | commitdiff | raw | diff to current |
| 2016-10-16 |
Ralph Corderoy | Add macro NEW0(p) that callocs, and use it in simple... |
blob | commitdiff | raw | diff to current |
| 2016-10-16 |
Ralph Corderoy | Don't check mh_xcalloc() and friends for a NULL return. |
blob | commitdiff | raw | diff to current |
| 2016-10-06 |
David Levine | Merge branch 'welcome' |
blob | commitdiff | raw | diff to current |
| 2016-10-01 |
David Levine | mhfixmsg now replaces RFC 2047 encoding with RFC 2231... |
blob | commitdiff | raw | diff to current |
| 2016-09-25 |
David Levine | Merge remote-tracking branch 'origin' into smtputf8 |
blob | commitdiff | raw | diff to current |
| 2016-09-23 |
Ken Hornstein | Merge branch 'pop-tls' |
blob | commitdiff | raw | diff to current |
| 2016-09-23 |
Ken Hornstein | Switch decodeBase64() second argument to an unsigned... |
blob | commitdiff | raw | diff to current |
| 2016-09-20 |
David Levine | Plugged memory leak in openBase64(). |
blob | commitdiff | raw | diff to current |
| 2016-07-21 |
David Levine | Factored out base64 decoding code into decodeBase64(). |
blob | commitdiff | raw | diff to current |
| 2016-07-21 |
David Levine | Factored out base64 decoding code into decodeBase64(). |
blob | commitdiff | raw | diff to current |
| 2016-06-26 |
David Levine | Merge remote-tracking branch 'origin' into xoauth |
blob | commitdiff | raw | diff to current |
| 2016-04-03 |
Eric Gillespie | Rename and document functions that read from stdin. |
blob | commitdiff | raw | diff to current |
| 2016-03-24 |
David Levine | Merge remote-tracking branch 'origin' into xoauth |
blob | commitdiff | raw | diff to current |
| 2016-03-19 |
Ken Hornstein | Fix substitution code so it uses the right pointer... |
blob | commitdiff | raw | diff to current |
| 2016-03-13 |
David Levine | Merge branch 'master' into xoauth |
blob | commitdiff | raw | diff to current |
| 2016-01-20 |
David Levine | Added mention of mhfixmsg -fixcte to error message... |
blob | commitdiff | raw | diff to current |
| 2015-03-05 |
Paul Fox | mhparse.c: verify all MIME-Version: headers encountered |
blob | commitdiff | raw | diff to current |
| 2015-02-23 |
David Levine | Merge remote-tracking branch 'origin/convertargs' |
blob | commitdiff | raw | diff to current |
| 2015-02-14 |
David Levine | Removed unnecessary #include of h/signals.h. |
blob | commitdiff | raw | diff to current |
| 2015-02-05 |
David Levine | Merge remote-tracking branch 'origin' into convertargs |
blob | commitdiff | raw | diff to current |
| 2015-02-05 |
David Levine | Removed unused local variable from move_preferred_part(). |
blob | commitdiff | raw | diff to current |
| 2015-02-04 |
Paul Fox | implement -prefer, for multipart/alternative preferences |
blob | commitdiff | raw | diff to current |
| 2015-02-03 |
Paul Fox | drop the second argument to part_ok(), since it is... |
blob | commitdiff | raw | diff to current |
| 2015-01-08 |
David Levine | Merge remote-tracking branch 'origin' into convertargs |
blob | commitdiff | raw | diff to current |
| 2014-12-25 |
David Levine | Added ct_str_type() and ct_str_subtype() functions... |
blob | commitdiff | raw | diff to current |
| 2014-12-02 |
Ken Hornstein | Merge commit '8206fbf', due to my screwup of committing... |
blob | commitdiff | raw | diff to current |
| 2014-12-01 |
David Levine | mhfixmsg now removes an extraneous trailing semicolon... |
blob | commitdiff | raw | diff to current |
| 2014-11-21 |
David Levine | Added support for multipart/related to MIME parser. |
blob | commitdiff | raw | diff to current |
| 2014-11-21 |
David Levine | Fixed double fclose() in InitMultiPart() and leaks... |
blob | commitdiff | raw | diff to current |
| 2014-11-16 |
David Levine | Fixed leak in content_charset(): if get_param() found... |
blob | commitdiff | raw | diff to current |
| 2014-11-08 |
David Levine | Changed content_charset() to not cache, so the user... |
blob | commitdiff | raw | diff to current |
| 2014-10-11 |
David Levine | Added mh_xcalloc(). |
blob | commitdiff | raw | diff to current |
| 2014-09-15 |
David Levine | Added checks of return value of fwrite() calls where... |
blob | commitdiff | raw | diff to current |
| 2014-09-13 |
David Levine | Fixed all anomalies detected by clang static analyzer... |
blob | commitdiff | raw | diff to current |
| 2014-08-26 |
David Levine | Moved reverse_alternative_parts() from mhfixmsg.c to... |
blob | commitdiff | raw | diff to current |
| 2014-06-08 |
Ken Hornstein | Return an appropriate error if the input characters... |
blob | commitdiff | raw | diff to current |
| 2014-05-26 |
David Levine | Added context_find_by_type(), helper function to search... |
blob | commitdiff | raw | diff to current |
| 2014-05-08 |
Paul Fox | eliminate use of fgets() in mhparse.c |
blob | commitdiff | raw | diff to current |
| 2014-03-21 |
Ken Hornstein | Move pidcheck() into mhshowsbr.c (the only consumer... |
blob | commitdiff | raw | diff to current |
| 2014-03-21 |
Ken Hornstein | Remove support for parallel content display. This... |
blob | commitdiff | raw | diff to current |
| 2014-03-06 |
Ken Hornstein | Fix up some warnings and problems when iconv doesn... |
blob | commitdiff | raw | diff to current |
| 2014-03-06 |
Ken Hornstein | Merge branch 'extended-params' |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Add extra argument to add_param() so it can use the... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Whoops, a little TOO hasty on the last bugfix; put... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Switch over to using the token parser instead of isspac... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Move language tag parser into the block so it only... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Fix up some error reporting, and reassemble partial... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Fix up a few pointer mishaps; this should now get every... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | Whoops, forgot to set the name element of the partial... |
blob | commitdiff | raw | diff to current |
| 2014-03-05 |
Ken Hornstein | A few minor fixups; the parser now passes the test... |
blob | commitdiff | raw | diff to current |
| 2014-03-04 |
Ken Hornstein | Fixes for the MIME parser; kinda works for regular... |
blob | commitdiff | raw | diff to current |
| 2014-03-04 |
Ken Hornstein | More work on extended parameter parser. Does not compi... |
blob | commitdiff | raw | diff to current |
| 2014-03-03 |
Ken Hornstein | Make parse_header_attrs() a private function (there... |
blob | commitdiff | raw | diff to current |
| 2014-03-03 |
Ken Hornstein | Switch over get_ctinfo() to determine the filename... |
blob | commitdiff | raw | diff to current |
| 2014-03-02 |
Ken Hornstein | Add a new get_param_value(); redo iconv() parameter... |
blob | commitdiff | raw | diff to current |
| 2014-02-28 |
Ken Hornstein | Fix iconv return value test warning. |
blob | commitdiff | raw | diff to current |
| next |