Skip to content

Commit

Permalink
fix: remove default value for mailclass
Browse files Browse the repository at this point in the history
The initial setup of green arrow has not have mail class defined, the default mailclass is implicit

Set the value with `default` will cause an error because the mailclass does not exist
  • Loading branch information
RodrigoPereyraDiaz committed Sep 12, 2023
1 parent 48dba2f commit 283d6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GreenArrow.Engine/Model/Message.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class Message
/// <summary>
/// Name of the SimpleMH Mail Class to use. This key has the same effect as the X-GreenArrow-MailClass header.
/// </summary>
public string MailClass { get; set; } = "default";
public string MailClass { get; set; }

/// <summary>
/// Fully qualified domain name to use in the domain portion of the Message-ID header generated by GreenArrow.
Expand Down

0 comments on commit 283d6a9

Please sign in to comment.