ChangeLog 4.3 KB

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