Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
cosullivan committed Mar 10, 2019
1 parent 005c349 commit 8869cec
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 19 deletions.
30 changes: 15 additions & 15 deletions Src/SmtpServer/Protocol/SmtpReplyCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum SmtpReplyCode
Ok = 250,

/// <summary>
/// User not local will forward: the recipient’s account is not on the present server, so it will be relayed to another.
/// "User not local will forward": the recipient’s account is not on the present server, so it will be relayed to another.
/// </summary>
RelayToAnotherServer = 251,

Expand All @@ -63,13 +63,13 @@ public enum SmtpReplyCode
StartMailInput = 354,

/// <summary>
/// Timeout connection problem: there have been issues during the message transfer.
/// "Timeout connection problem": there have been issues during the message transfer.
/// </summary>
TimeoutConnectionProblem = 420,

/// <summary>
/// The service is unavailable due to a connection problem: it may refer to an exceeded limit of simultaneous connections, or a more general temporary problem.
/// The server (yours or the recipients) is not available at the moment, so the dispatch will be tried again later.
/// The server (yours or the recipient's) is not available at the moment, so the dispatch will be tried again later.
/// </summary>
ServiceUnavailable = 421,

Expand All @@ -78,8 +78,8 @@ public enum SmtpReplyCode
/// </summary>
ExceededStorage = 422,

/// </summary>
/// Not enough space on the disk, or an out of memory condition due to a file overload.
/// <summary>
/// Not enough space on the disk, or an "out of memory" condition due to a file overload.
/// </summary>
Overloaded = 431,

Expand All @@ -88,12 +88,12 @@ public enum SmtpReplyCode
/// </summary>
RecipientNotResponding = 441,

/// </summary>
/// <summary>
/// The connection was dropped during the transmission.
/// </summary>
ConnectionDropped = 442,

/// </summary>
/// <summary>
/// The maximum hop count was exceeded for the message: an internal loop has occurred.
/// </summary>
MaxHopCountExceeded = 446,
Expand All @@ -109,12 +109,12 @@ public enum SmtpReplyCode
RoutingError = 449,

/// <summary>
/// Requested action not taken – The user’s mailbox is unavailable. The mailbox has been corrupted or placed on an offline server, or your email hasnt been accepted for IP problems or blacklisting.
/// "Requested action not taken – The user’s mailbox is unavailable". The mailbox has been corrupted or placed on an offline server, or your email hasn't been accepted for IP problems or blacklisting.
/// </summary>
Unavailable = 450,

/// <summary>
/// Requested action aborted – Local error in processing. Your ISPs server or the server that got a first relay from yours has encountered a connection problem.
/// "Requested action aborted – Local error in processing". Your ISP's server or the server that got a first relay from yours has encountered a connection problem.
/// </summary>
Aborted = 451,

Expand Down Expand Up @@ -161,22 +161,22 @@ public enum SmtpReplyCode
/// <summary>
/// Bad email address.
/// Codes 510 or 511 result the same structure.
/// One of the addresses in your TO, CC or BBC line doesnt exist. Check again your recipients accounts and correct any possible misspelling.
/// One of the addresses in your TO, CC or BBC line doesn't exist. Check again your recipients' accounts and correct any possible misspelling.
/// </summary>
BadEmailAddress = 510,

/// <summary>
/// A DNS error: the host server for the recipients domain name cannot be found.
/// A DNS error: the host server for the recipient's domain name cannot be found.
/// </summary>
DnsError = 512,

/// <summary>
/// Address type is incorrect: another problem concerning address misspelling. In few cases, however, its related to an authentication issue.
/// "Address type is incorrect": another problem concerning address misspelling. In few cases, however, it's related to an authentication issue.
/// </summary>
IncorrectAddressType = 513,

/// <summary>
/// The total size of your mailing exceeds the recipient servers limits.
/// The total size of your mailing exceeds the recipient server's limits.
/// </summary>
MailingLimitExceeded = 523,

Expand All @@ -191,7 +191,7 @@ public enum SmtpReplyCode
AuthenticationFailed = 535,

/// <summary>
/// The recipient address rejected your message: normally, its an error caused by an anti-spam filter.
/// The recipient address rejected your message: normally, it's an error caused by an anti-spam filter.
/// </summary>
RecipientAddressRejected = 541,

Expand All @@ -201,7 +201,7 @@ public enum SmtpReplyCode
MailboxUnavailable = 550,

/// <summary>
/// User not local or invalid address – Relay denied. Meaning, if both your address and the recipient’s are not locally hosted by the server, a relay can be interrupted.
/// "User not local or invalid address – Relay denied". Meaning, if both your address and the recipients are not locally hosted by the server, a relay can be interrupted.
/// </summary>
RelayDenied = 551,

Expand Down
9 changes: 5 additions & 4 deletions Src/SmtpServer/SmtpServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>7.2</LangVersion>
<AssemblyName>SmtpServer</AssemblyName>
<RootNamespace>SmtpServer</RootNamespace>
<Version>6.0.0-Beta3</Version>
<Version>6.1.0</Version>
<Description>.NET SmtpServer</Description>
<Authors>Cain O'Sullivan</Authors>
<Company />
Expand All @@ -15,9 +15,10 @@
<PackageTags>smtp smtpserver smtp server</PackageTags>
<PackageLicenseUrl>https://raw.githubusercontent.com/cosullivan/SmtpServer/master/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
<PackageReleaseNotes>Abstracted out an IEndpointListener service that allows the Tcp connections to be handled externally. The RemoteEndPoint property on ISessionContext is now included in the Context's property bag as opposed to a direct property of the context. Framework requirement has now been bumped to .NET Standard 2.0.</PackageReleaseNotes>
<AssemblyVersion>6.1.0.0</AssemblyVersion>
<FileVersion>6.1.0.0</FileVersion>
<PackageReleaseNotes>Added additional codes to SmtpReplyCode.</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

</Project>

0 comments on commit 8869cec

Please sign in to comment.