ChangeLog 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. Mon Jul 9 13:04:37 CEST 2007 Paolo Molaro <[email protected]>
  2. * SmtpClient.cs: fixed Vladimir's refactoring that broke
  3. loading Mono.Security.
  4. 2006-08-03 Gonzalo Paniagua Javier <[email protected]>
  5. * MailAddress.cs: allow the space before '<' to be omitted.
  6. 2006-04-26 Vladimir Krasnov <[email protected]>
  7. * SmtpClient.cs, SmtpStream.cs: Added SMTP over TLS support,
  8. refactoring
  9. 2006-03-23 Vladimir Krasnov <[email protected]>
  10. * SmtpMail.cs: removed TARGET_JVM part from Send method.
  11. 2006-03-23 Vladimir Krasnov <[email protected]>
  12. * MailMessageWrapper.cs: fixed Fields property, casting to string
  13. changed to ToString method call.
  14. 2006-01-08 Konstantin Triger <[email protected]>
  15. * SmtpClient.cs, SmtpMail.cs, MailMessage.cs, MailMessageWrapper.cs,
  16. MailAttachment.cs: TARGET_JVM changes to let the compilation
  17. pass with csc 1.1.
  18. 2005-11-28 Chris Toshok <[email protected]>
  19. * SmtpClient.cs: ignore warning 618 (obsolete) when compiling an
  20. already obsolete api (in the 2.0 case).
  21. * MailAttachment.cs: same.
  22. * MailMessageWrapper.cs: same.
  23. * MailMessage.cs: same.
  24. 2005-09-15 Gert Driesen <[email protected]>
  25. * MailPriority.cs: Marked obsolete in 2.0 profile. Fixed line endings.
  26. * SmtpMail.cs: Added workaround message to ensure same warning is
  27. generated as MS.NET 2.0.
  28. * MailMessage.cs: same and fixed line endings. Set eol-style to native.
  29. * MailEncoding.cs: same.
  30. * MailFormat.cs: same.
  31. * MailAttachment.cs: same.
  32. 2005-09-13 Sebastien Pouliot <[email protected]>
  33. * SmtpMail.cs: Added an Assert for FileIOPermission so it's possible
  34. to send attachments (in this case MailAttachment is already protected
  35. but doesn't open|read the file itself).
  36. 2005-09-09 Sebastien Pouliot <[email protected]>
  37. * MailAttachment.cs: Added [Link|Inheritance]Demand for Minimal. Added
  38. FileIOPermission for Read in the constructor. Added [Obsolete] in 2.0.
  39. * MailEncoding.cs: Removed [Serializable] and added [Obsolete] in 2.0.
  40. * MailFormat.cs: Removed [Serializable] and added [Obsolete] in 2.0.
  41. * MailMessage.cs: Removed references to RelatedBodyParts (2.0). Added
  42. [Link|Inheritance]Demand for Minimal. Added [Obsolete] in 2.0.
  43. * MailMessageWrapper.cs: Removed references to RelatedBodyParts (2.0).
  44. * MailPriority.cs: Removed [Serializable] in 2.0. No [Obsolete] ?
  45. * SmtpClient.cs: Removed references to RelatedBodyParts (2.0).
  46. * SmtpMail.cs: Added [Link|Inheritance]Demand for Minimal. Added
  47. Demand for Medium on Send method.Added [Obsolete] in 2.0.
  48. 2005-06-08 Ilya Kharmatsky <ilyak-at-mainsoft.com>
  49. * SmtpMail.cs: Added TARGET_JVM directive in Send method,
  50. where we will use in J2EE configuration the "native" java
  51. support for obtaining the network address of localhost.
  52. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  53. * SmtpClient.cs:
  54. * SmtpStream.cs: removed warnings.
  55. 2005-01-28 Lluis Sanchez Gual <[email protected]>
  56. * Base64AttachmentEncoder.cs: Fixed warning.
  57. 2004-10-27 Sanjay Gupta <[email protected]>
  58. * SmtpClient.cs: Fix for bug 68829.
  59. 2004-08-27 Sanjay Gupta <[email protected]>
  60. * MailMessageWrapper.cs: Added a comment to add Date header.
  61. * SmtpClient.cs: Updated functionality to add RelatedBodyPart to
  62. MIME message.
  63. 2004-08-26 Sanjay Gupta <[email protected]>
  64. * SmtpClient.cs: Added functionality to add RelatedBodyPart to
  65. MIME message.
  66. 2004-08-25 Sanjay Gupta <[email protected]>
  67. * MailMessageWrapper.cs: Added NET_2_0 property and another missing
  68. property from NET_1_1.
  69. * RelatedBodyPart.cs: Error detection and handling.
  70. * SmtpClient.cs: Upgraded for NET_1_1 and WIP for NET_2_0.
  71. 2004-08-18 Sanjay Gupta <[email protected]>
  72. * MailEncoding.cs:
  73. * MailFormat.cs:
  74. * MailPriority.cs: Added NET_2_0 attribute.
  75. 2004-08-18 Sanjay Gupta <[email protected]>
  76. * MailMessage.cs: Added new property RelatedBodyParts.
  77. * RelatedBodyPart.cs: Added new file.
  78. 2004-08-10 Gonzalo Paniagua Javier <[email protected]>
  79. * SmtpClient.cs: multipart mails default body format is now the same as
  80. the one used for single part mails instead of being forced to
  81. "text/plain".
  82. 2004-02-27 Gonzalo Paniagua Javier <[email protected]>
  83. * MailMessage.cs: patch by John Luke that initialized the fields in
  84. the message and makes Fields return the same as in MS.NET. Fixes bug
  85. #54908.
  86. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  87. * MailMessage.cs: added Fields property.
  88. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  89. * MailMessageWrapper.cs: fixed typo that made all messages be sent as
  90. html, even when the body is marked as text. Path by Mohammad DAMT.
  91. Closes bug #51177.
  92. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  93. * MailAddress.cs: return null instead of exception when the address is
  94. empty.
  95. * MailAddressCollection.cs: ignore null addresses.
  96. * SmtpMail.cs: add the exception we get as inner exception so we know
  97. where the error is.
  98. Fixes bug #45746.
  99. 2003-03-24 Per Arneng <[email protected]>
  100. * MailUtil: Added for some functions that didnt fit in other classes
  101. 2003-03-06 Per Arneng <[email protected]>
  102. * MailMessageWrapper: Added to get at more advanced mail message
  103. 2003-02-23 Per Arneng <[email protected]>
  104. * SmtpMail.cs: Send method now implemented (needs testing)
  105. * SmtpClient.cs: Added to make Send work (internal class)
  106. * SmtpException.cs: Added to make Send work (internal class)
  107. * SmtpStream.cs: Added to make Send work (internal class)
  108. * SmtpResponse.cs: Added to make Send work (internal class)
  109. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  110. * SmtpMail.cs: i don't wanna see that warning :-).
  111. 2002-04-26 Lawrence Pit <[email protected]>
  112. * MailAttachment.cs: Implemented
  113. * MailEncoding.cs: Implemented
  114. * MailFormat.cs: Implemented
  115. * MailMessage.cs: Implemented
  116. * MailPriority.cs: Implemented
  117. * SmtpMail.cs: Stubbed