Skip to content
  1. May 22, 2012
    • Steve Holme's avatar
      smtp: Fixed an issue with the multi-interface always sending postdata · ef60fdbd
      Steve Holme authored
      Due to the result code being reset to CURLE_OK when smtp_dophase_done()
      was called, postdata would incorrectly be sent to the server when the
      MAIL FROM or RCPT command was rejected.
      
      As such, libcurl would return the wrong result code from performing the
      operation and additionally set CURLINFO_RESPONSE_CODE to be that
      returned by the postdata command.
      
      Bug: http://curl.haxx.se/mail/lib-2012-05/0108.html
      Reported by: Gokhan Sengun
      ef60fdbd
    • Tatsuhiro Tsujikawa's avatar
      Fixed compile error with GNUTLS+NETTLE · 6cc066a2
      Tatsuhiro Tsujikawa authored
      In nettle/md5.h, md5_init and md5_update are defined as macros to
      nettle_md5_init and nettle_md5_update respectively.  This causes
      error when using MD5_params.md5_init and md5_update.  This patch
      renames these members as md5_init_func and md5_update_func to
      avoid name conflict. For completeness, MD5_params.md5_final was
      also renamed as md5_final_func.
      
      The changes in curl_ntlm_core.c is conversion error and fixed by
      casting to proper type.
      6cc066a2
    • Guenter Knauf's avatar
      Updated dependency libary versions. · 1c58f291
      Guenter Knauf authored
      1c58f291
  2. May 17, 2012
    • Steve Holme's avatar
      smtp: Fixed non-escaping of dot character at beginning of line · 7ba07c80
      Steve Holme authored
      A dot character at the beginning of a line would not be escaped to a
      double dot as required by RFC-2821, instead it would be deleted by the
      mail server. Please see section 4.5.2 of the RFC for more information.
      
      Note: This fix also simplifies the detection of repeated CRLF.CRLF
      combinations, such as CRLF.CRLF.CRLF, a little rather than having to
      advance the eob counter to 2.
      7ba07c80
  3. May 02, 2012
    • Gokhan Sengun's avatar
      MD5: OOM fix · d6773834
      Gokhan Sengun authored
      check whether md5 initialization succeeded before updating digest of
      buffers onto it
      d6773834
  4. Apr 26, 2012
  5. Apr 23, 2012
  6. Apr 22, 2012
  7. Apr 20, 2012
  8. Apr 19, 2012
  9. Apr 18, 2012
  10. Apr 17, 2012
  11. Apr 16, 2012
  12. Apr 14, 2012
  13. Apr 13, 2012
  14. Apr 12, 2012
  15. Apr 11, 2012
    • Yang Tse's avatar
      build adjustments: CURL_HIDDEN_SYMBOLS no longer defined in config files · 9e24b9c7
      Yang Tse authored
      configure script now provides conditional definitions for Makefile.am
      that result in CURL_HIDDEN_SYMBOLS being defined by resulting makefiles
      when appropriate.
      
      Additionally, configure script option for symbol hiding control is now
      named --enable-symbol-hiding --disable-symbol-hiding. While still valid,
      old option name --enable-hidden-symbols --disable-hidden-symbols will
      be deprecated in some future release.
      9e24b9c7