New test + update
[mono.git] / mcs / class / System.Web / System.Web.Mail / ChangeLog
index 8361593aab95b1a6de543ba504d266a27d9400b1..89d8f5f8acfb2433ac8293a7b6a386229991f90f 100644 (file)
@@ -1,3 +1,85 @@
+2007-12-13  Marek Habersack  <mhabersack@novell.com>
+
+       * MailAddress.cs, SmtpClient.cs, MailMessageWrapper.cs: speed
+       optimization - use String.Concat instead of String.Format in some
+       cases.
+
+2007-11-09  Marek Habersack  <mhabersack@novell.com>
+
+       * SmtpClient.cs: Connect only after reading in the fields that may
+       specify the port to connect to. Fixes bug #340501. Patch submitted
+       by Hubert FONGARNAND <informatique.internet@fiducial.fr>, thanks!
+
+Mon Jul 9 13:04:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
+
+       * SmtpClient.cs: fixed Vladimir's refactoring that broke
+       loading Mono.Security.
+
+2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * MailAddress.cs: allow the space before '<' to be omitted.
+
+2006-04-26  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * SmtpClient.cs, SmtpStream.cs: Added SMTP over TLS support, 
+       refactoring
+
+2006-03-23  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * SmtpMail.cs: removed TARGET_JVM part from Send method.
+
+2006-03-23  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * MailMessageWrapper.cs: fixed Fields property, casting to string
+       changed to ToString method call.
+
+2006-01-08  Konstantin Triger <kostat@mainsoft.com>
+
+       * SmtpClient.cs, SmtpMail.cs, MailMessage.cs, MailMessageWrapper.cs,
+               MailAttachment.cs: TARGET_JVM changes to let the compilation
+               pass with csc 1.1.
+
+2005-11-28  Chris Toshok  <toshok@ximian.com>
+
+       * SmtpClient.cs: ignore warning 618 (obsolete) when compiling an
+       already obsolete api (in the 2.0 case).
+
+       * MailAttachment.cs: same.
+
+       * MailMessageWrapper.cs: same.
+
+       * MailMessage.cs: same.
+
+2005-09-15  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * MailPriority.cs: Marked obsolete in 2.0 profile. Fixed line endings.
+       * SmtpMail.cs: Added workaround message to ensure same warning is
+       generated as MS.NET 2.0.
+       * MailMessage.cs: same and fixed line endings. Set eol-style to native.
+       * MailEncoding.cs: same.
+       * MailFormat.cs: same.
+       * MailAttachment.cs: same.
+
+2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * SmtpMail.cs: Added an Assert for FileIOPermission so it's possible
+       to send attachments (in this case MailAttachment is already protected
+       but doesn't open|read the file itself).
+
+2005-09-09  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * MailAttachment.cs: Added [Link|Inheritance]Demand for Minimal. Added
+       FileIOPermission for Read in the constructor. Added [Obsolete] in 2.0.
+       * MailEncoding.cs: Removed [Serializable] and added [Obsolete] in 2.0.
+       * MailFormat.cs: Removed [Serializable] and added [Obsolete] in 2.0.
+       * MailMessage.cs: Removed references to RelatedBodyParts (2.0). Added 
+       [Link|Inheritance]Demand for Minimal. Added [Obsolete] in 2.0.
+       * MailMessageWrapper.cs: Removed references to RelatedBodyParts (2.0).
+       * MailPriority.cs: Removed [Serializable] in 2.0. No [Obsolete] ?
+       * SmtpClient.cs: Removed references to RelatedBodyParts (2.0).
+       * SmtpMail.cs: Added [Link|Inheritance]Demand for Minimal. Added 
+       Demand for Medium on Send method.Added [Obsolete] in 2.0.
+
 2005-06-08 Ilya Kharmatsky <ilyak-at-mainsoft.com>
 
     * SmtpMail.cs: Added TARGET_JVM directive in Send method,