Hi,
When an email contains attachments with brackets in file names then they are not recognized at all. Specially if file names contain only opening or closing bracket, like 'filename (123'txt'. Does not happen for all such cases but at least I had one case when couple of attachments with open brackets were not shown (Attachments.Count = 0)
I think this line is causing the problem, or should be reworked.
Message.cs@584
if ((str.Split(')').Length + (i == 0 ? 1 : 0)) >= (str.Split('(').Length) || (i + 1 < data.Count && Regex.IsMatch(data[i + 1], @"^[A-Za-z-]+:")))
regards, Adam
When an email contains attachments with brackets in file names then they are not recognized at all. Specially if file names contain only opening or closing bracket, like 'filename (123'txt'. Does not happen for all such cases but at least I had one case when couple of attachments with open brackets were not shown (Attachments.Count = 0)
I think this line is causing the problem, or should be reworked.
Message.cs@584
if ((str.Split(')').Length + (i == 0 ? 1 : 0)) >= (str.Split('(').Length) || (i + 1 < data.Count && Regex.IsMatch(data[i + 1], @"^[A-Za-z-]+:")))
regards, Adam