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