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