ChangeLog 4.7 KB

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