| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- 2007-10-16 Atsushi Enomoto <[email protected]>
- * MailMessage.cs : Some entire refactory on BodyEncoding and
- IsBodyHtml. BodyEncoding and SubjectEncoding are guessed when
- Body and Subject are set for each.
- * SmtpClient.cs :
- Subject header is encoded according to RFC 2047.
- Body is encoded according to RFC 2821.
- Output Date header.
- ToQuotedPrintable() should take encoding into consideration.
- For SevenBit/Unknown TransferEncoding, just decode with ASCII.
- In set_UseDefaultCredentials(), raise NIE only when value is true.
- In set_Timeout(), raise an error when Send() is in progress.
- 2007-10-16 Atsushi Enomoto <[email protected]>
- * SmtpClient.cs : Replace every \r and \n with \r\n per RFC 2821
- section 2.3.7, or you will receive SMTP error 451.
- 2007-10-16 Atsushi Enomoto <[email protected]>
- * AlternateViewCollection.cs, LinkedResourceCollection.cs,
- AttachmentCollection.cs : added missing 2.0 members.
- 2007-06-17 Gert Driesen <[email protected]>
- * MailAddress.cs: Throw ArgumentNullException if address is null.
- Allow display name to be specified as part of the address. Fixes
- bug #81854. Return zero-length string in DisplayName if no display
- name is set.
- 2007-05-31 Jeffrey Stedfast <[email protected]>
- * SmtpClient.cs: Added an extensions parser to figure out if the
- ESMTP server supports things like STARTTLS and which AUTH
- mechanisms are supported. Don't try authenticating if no authmechs
- are supported.
- 2007-05-30 Jeffrey Stedfast <[email protected]>
- * SmtpClient.cs: Fall back to HELO if EHLO fails. Also, do not
- write out a Bcc header to the SMTP server - these are meant to be
- dropped. MAIL FROM: and RCPT TO: commands are not meant to have a
- space after the colon before the address - this will break on some
- SMTP servers.
- 2007-02-16 Geoff Norton <[email protected]>
- * SmtpClient.cs: Dont send bare LF. Send <CR><LF> regardless
- of platform. (ref: http://cr.yp.to/docs/smtplf.html)
- 2007-01-20 Miguel de Icaza <[email protected]>
- * MailMessage.cs: Add suport to the MailMessage constructor to
- take a comma-separated list of addresses (Bug #80548).
- 2006-12-12 Miguel de Icaza <[email protected]>
- * MailMessage.cs: Fix this code so that it correctly reports
- ArgumentNullExceptions.
- 2006-12-12 Atsushi Enomoto <[email protected]>
- * SmtpClient.cs : use CONFIGURATION_DEP when it is
- System.Configuration.dll dependent.
- 2006-12-10 David Elkind <[email protected]>
- * Attachment.cs - proper file name handling added
- * AttachmentBase.cs - proper MIME type handling added
- * MailAddress.cs - Proper mail address handling ('<' and '>' addition) added
- * MailMessage.cs - Better construction sequence
- * SmtpClient.cs - Added proper handling of composite message (consisting of alternate views/attachments)
- - Added handling of user credentials
- - Added handling of TLS (under TARGET_JVM)
- - Some other minor fixes
- 2006-12-04 Konstantin Triger <[email protected]>
- * SmtpException.cs, SmtpFailedRecipientException.cs: TARGET_JVM limitation workaround.
- 2006-12-01 Sebastien Pouliot <[email protected]>
- * SmtpClient.cs: Added MonoTODO for missing SSL/TLS support and
- updated existing MonoTODO (or changed them to FIXME) to be clearer
- for anyone using the API.
- 2006-10-31 Sebastien Pouliot <[email protected]>
- * SmtpException.cs: Fix visibility on .ctor(SerializationInfo,
- StreamingContext).
- * SmtpPermissionAttribute.cs: New (2.0). Security attribute for SMTP.
- * SmtpPermission.cs: New (2.0). Security permission for SMTP.
- 2006-09-28 Andrew Skiba <[email protected]>
- * SmtpClient.cs: TARGET_JVM
- 2006-03-11 Miguel de Icaza <[email protected]>
- * MailAddress.cs: Comment out unused field to remove warning.
- 2006-1-13 John Luke <[email protected]>
- * MailMessage.cs: add [MonoTODO] for FormatException in ctor,
- throw ArugmentNullException's from the ctors,
- add internal BodyContentType property,
- change BodyEncoding to use BodyContentType,
- change IsBodyHtml to use BodyContentType,
- * SmtpClient.cs: set timeout initially to 100000,
- don't throw ArgumentOutOfRangeException when Timeout = 0,
- add [MonoTODO] for set_host, and throw Exceptions for it,
- add [MonoTODO] for UseDefaultCredentials,
- get messageContentType from the message,
- use "127.0.0.1" for Host and 25 for Port
- if host or port is not specified until reading
- them from the configuration files is done
- 2006-1-02 John Luke <[email protected]>
- * DeliveryNotificationOptions: fix value of Delay
-
- 2005-12-26 John Luke <[email protected]>
- * AttachmentCollection.cs: mark sealed
- * DeliveryNotificationOptions.cs: fix values
-
- 2005-12-25 John Luke <[email protected]>
- * SmtpStatusCode.cs: OK > Ok
- * AttachmentBase.cs: ContentID > ContentId,
- add set_ContentType
- * AlternateViewCollection.cs: remove destructor,
- make default ctor internal
- * MailMessage.cs: add default ctor,
- remove destructor
- * Attachment.cs: add (string, string) ctor,
- add set_NameEncoding
- * LinkedResourceCollection.cs: remove destructor,
- make default ctor internal
- * AttachmentCollection.cs: mark Dispose virtual,
- add ISerializable, make default ctor internal
- 2005-12-24 John Luke <[email protected]>
- * LinkedResource.cs: new File
- * AttachmentBase.cs: new File
- * MailPriority.cs: new File
- * AlternateViewCollection.cs: new File
- * DeliveryNotificationOptions.cs: new File
- * SmtpFailedRecipientException.cs: new File
- * AlternateView.cs: new File
- * LinkedResourceCollection.cs: new File
- * MailMessage.cs: add some missing properties, update API for 2.0 final
- * Attachment.cs: inherit from AttachmentBase, update API for 2.0 final
- * MailAddress.cs: fix ToString, override Equals and GetHashCode
- * SmtpFailedRecipientsException.cs: use SmtpFailedRecipientException
- * SmtpException.cs: add [Serializable], ISerializable
- * MailAddressCollection.cs: inherit from Collection<MailAddress>
- * AttachmentCollection.cs: inherit from Collection<Attachment>
- * SmtpAccess.cs: add missing value
- * SmtpClient.cs: update for 2.0 final API
- * SmtpStatusCode.cs: add missing value
- 2005-12-24 John Luke <[email protected]>
- * MailMessage.cs: use text/plain by default,
- patch by Andy Waddell <[email protected]>,
- fixes bug #76972
- 2005-12-22 John Luke <[email protected]>
- * SmtpClient.cs: remove use of TransferEncodings that
- no longer exist in .net 2 final API
-
- 2005-12-14 Chris Toshok <[email protected]>
- * SmtpDeliveryMethod.cs: new enum.
- 2004-09-10 Tim Coleman <[email protected]>
- * SmtpClient.cs SmtpFailedRecipientsException.cs:
- Add failed recipient exception handling.
- 2004-09-09 Tim Coleman <[email protected]>
- * AttachmentCollection.cs MailAddressCollection.cs:
- New classes
- * Attachment.cs: Set content string
- * MailMessage.cs: Use new collection classes
- * SmtpClient.cs: Lots of MIME cleanup
- 2004-09-08 Tim Coleman <[email protected]>
- * Attachment.cs: Add SetContentFromFile methods
- * MailMessage.cs: Add MIME-Version header
- * SmtpClient.cs: Add some attachment handling.
- 2004-09-04 Tim Coleman <[email protected]>
- * Attachment.cs MailAddress.cs MailMessage.cs SendCompletedEventHandler.cs
- * SmtpAccess.cs SmtpClient.cs SmtpException.cs SmtpStatusCode.cs:
- New class stubs for 2.0
|