From 1c67f0ac381462ee6228d2e169981db986493b67 Mon Sep 17 00:00:00 2001 From: Tommaso Toniolo Date: Mon, 3 Jun 2024 09:03:47 +0200 Subject: [PATCH] Fixed 2 typos in the event log messages --- TransportAgents/HeaderReroutingAgent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TransportAgents/HeaderReroutingAgent.cs b/TransportAgents/HeaderReroutingAgent.cs index 728644a..d7fcd58 100644 --- a/TransportAgents/HeaderReroutingAgent.cs +++ b/TransportAgents/HeaderReroutingAgent.cs @@ -218,10 +218,10 @@ void RemoveEmptyHeaders(CategorizedMessageEventSource source, QueuedMessageEvent if (externalRecipients > 0) { - EventLog.AppendLogEntry(String.Format("Removing empty headers as there are extenral recipients")); + EventLog.AppendLogEntry(String.Format("Removing empty headers as there are external recipients")); foreach (Header header in evtMessage.MailItem.Message.MimeDocument.RootPart.Headers) { - EventLog.AppendLogEntry(String.Format("Inspeceting header {0}: {1}", header.Name, String.IsNullOrEmpty(header.Value) ? String.Empty : header.Value)); + EventLog.AppendLogEntry(String.Format("Inspecting header {0}: {1}", header.Name, String.IsNullOrEmpty(header.Value) ? String.Empty : header.Value)); if (header.Value == null || header.Value.Length == 0 || String.IsNullOrEmpty(header.Value)) { if (header.Name.ToLower() != "from" && header.Name.ToLower() != "to" && header.Name.ToLower() != "cc" && header.Name.ToLower() != "bcc")