ChangeLog.txt 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. ChangeLog
  2. Version 1.72 (Wed, May 25 2004)
  3. * Added Dutch, Swedish, Czech, Norwegian, and Turkish translations.
  4. * Received: Removed this method because spam filter programs like
  5. SpamAssassin reject this header.
  6. * Fixed error count bug.
  7. * SetLanguage default is now "language/".
  8. * Fixed magic_quotes_runtime bug.
  9. Version 1.71 (Tue, Jul 28 2003)
  10. * Made several speed enhancements
  11. * Added German and Italian translation files
  12. * Fixed HELO/AUTH bugs on keep-alive connects
  13. * Now provides an error message if language file does not load
  14. * Fixed attachment EOL bug
  15. * Updated some unclear documentation
  16. * Added additional tests and improved others
  17. Version 1.70 (Mon, Jun 20 2003)
  18. * Added SMTP keep-alive support
  19. * Added IsError method for error detection
  20. * Added error message translation support (SetLanguage)
  21. * Refactored many methods to increase library performance
  22. * Hello now sends the newer EHLO message before HELO as per RFC 2821
  23. * Removed the boundary class and replaced it with GetBoundary
  24. * Removed queue support methods
  25. * New $Hostname variable
  26. * New Message-ID header
  27. * Received header reformat
  28. * Helo variable default changed to $Hostname
  29. * Removed extra spaces in Content-Type definition (#667182)
  30. * Return-Path should be set to Sender when set
  31. * Adds Q or B encoding to headers when necessary
  32. * quoted-encoding should now encode NULs \000
  33. * Fixed encoding of body/AltBody (#553370)
  34. * Adds "To: undisclosed-recipients:;" when all recipients are hidden (BCC)
  35. * Multiple bug fixes
  36. Version 1.65 (Fri, Aug 09 2002)
  37. * Fixed non-visible attachment bug (#585097) for Outlook
  38. * SMTP connections are now closed after each transaction
  39. * Fixed SMTP::Expand return value
  40. * Converted SMTP class documentation to phpDocumentor format
  41. Version 1.62 (Wed, Jun 26 2002)
  42. * Fixed multi-attach bug
  43. * Set proper word wrapping
  44. * Reduced memory use with attachments
  45. * Added more debugging
  46. * Changed documentation to phpDocumentor format
  47. Version 1.60 (Sat, Mar 30 2002)
  48. * Sendmail pipe and address patch (Christian Holtje)
  49. * Added embedded image and read confirmation support (A. Ognio)
  50. * Added unit tests
  51. * Added SMTP timeout support (*nix only)
  52. * Added possibly temporary PluginDir variable for SMTP class
  53. * Added LE message line ending variable
  54. * Refactored boundary and attachment code
  55. * Eliminated SMTP class warnings
  56. * Added SendToQueue method for future queuing support
  57. Version 1.54 (Wed, Dec 19 2001)
  58. * Add some queuing support code
  59. * Fixed a pesky multi/alt bug
  60. * Messages are no longer forced to have "To" addresses
  61. Version 1.50 (Thu, Nov 08 2001)
  62. * Fix extra lines when not using SMTP mailer
  63. * Set WordWrap variable to int with a zero default
  64. Version 1.47 (Tue, Oct 16 2001)
  65. * Fixed Received header code format
  66. * Fixed AltBody order error
  67. * Fixed alternate port warning
  68. Version 1.45 (Tue, Sep 25 2001)
  69. * Added enhanced SMTP debug support
  70. * Added support for multiple ports on SMTP
  71. * Added Received header for tracing
  72. * Fixed AddStringAttachment encoding
  73. * Fixed possible header name quote bug
  74. * Fixed wordwrap() trim bug
  75. * Couple other small bug fixes
  76. Version 1.41 (Wed, Aug 22 2001)
  77. * Fixed AltBody bug w/o attachments
  78. * Fixed rfc_date() for certain mail servers
  79. Version 1.40 (Sun, Aug 12 2001)
  80. * Added multipart/alternative support (AltBody)
  81. * Documentation update
  82. * Fixed bug in Mercury MTA
  83. Version 1.29 (Fri, Aug 03 2001)
  84. * Added AddStringAttachment() method
  85. * Added SMTP authentication support
  86. Version 1.28 (Mon, Jul 30 2001)
  87. * Fixed a typo in SMTP class
  88. * Fixed header issue with Imail (win32) SMTP server
  89. * Made fopen() calls for attachments use "rb" to fix win32 error
  90. Version 1.25 (Mon, Jul 02 2001)
  91. * Added RFC 822 date fix (Patrice)
  92. * Added improved error handling by adding a $ErrorInfo variable
  93. * Removed MailerDebug variable (obsolete with new error handler)
  94. Version 1.20 (Mon, Jun 25 2001)
  95. * Added quoted-printable encoding (Patrice)
  96. * Set Version as public and removed PrintVersion()
  97. * Changed phpdoc to only display public variables and methods
  98. Version 1.19 (Thu, Jun 21 2001)
  99. * Fixed MS Mail header bug
  100. * Added fix for Bcc problem with mail(). *Does not work on Win32*
  101. (See PHP bug report: http://www.php.net/bugs.php?id=11616)
  102. * mail() no longer passes a fifth parameter when not needed
  103. Version 1.15 (Fri, Jun 15 2001)
  104. [Note: these changes contributed by Patrice Fournier]
  105. * Changed all remaining \n to \r\n
  106. * Bcc: header no longer writen to message except
  107. when sent directly to sendmail
  108. * Added a small message to non-MIME compliant mail reader
  109. * Added Sender variable to change the Sender email
  110. used in -f for sendmail/mail and in 'MAIL FROM' for smtp mode
  111. * Changed boundary setting to a place it will be set only once
  112. * Removed transfer encoding for whole message when using multipart
  113. * Message body now uses Encoding in multipart messages
  114. * Can set encoding and type to attachments 7bit, 8bit
  115. and binary attachment are sent as is, base64 are encoded
  116. * Can set Encoding to base64 to send 8 bits body
  117. through 7 bits servers
  118. Version 1.10 (Tue, Jun 12 2001)
  119. * Fixed win32 mail header bug (printed out headers in message body)
  120. Version 1.09 (Fri, Jun 08 2001)
  121. * Changed date header to work with Netscape mail programs
  122. * Altered phpdoc documentation
  123. Version 1.08 (Tue, Jun 05 2001)
  124. * Added enhanced error-checking
  125. * Added phpdoc documentation to source
  126. Version 1.06 (Fri, Jun 01 2001)
  127. * Added optional name for file attachments
  128. Version 1.05 (Tue, May 29 2001)
  129. * Code cleanup
  130. * Eliminated sendmail header warning message
  131. * Fixed possible SMTP error
  132. Version 1.03 (Thu, May 24 2001)
  133. * Fixed problem where qmail sends out duplicate messages
  134. Version 1.02 (Wed, May 23 2001)
  135. * Added multiple recipient and attachment Clear* methods
  136. * Added Sendmail public variable
  137. * Fixed problem with loading SMTP library multiple times
  138. Version 0.98 (Tue, May 22 2001)
  139. * Fixed problem with redundant mail hosts sending out multiple messages
  140. * Added additional error handler code
  141. * Added AddCustomHeader() function
  142. * Added support for Microsoft mail client headers (affects priority)
  143. * Fixed small bug with Mailer variable
  144. * Added PrintVersion() function
  145. Version 0.92 (Tue, May 15 2001)
  146. * Changed file names to class.phpmailer.php and class.smtp.php to match
  147. current PHP class trend.
  148. * Fixed problem where body not being printed when a message is attached
  149. * Several small bug fixes
  150. Version 0.90 (Tue, April 17 2001)
  151. * Intial public release