ChangeLog 5.4 KB

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