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