http://bugzilla.spamassassin.org/show_bug.cgi?id=2836
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spamassassin-
| |[EMAIL PROTECTED]
AssignedTo|spamassassin- |[EMAIL PROTECTED]
|[EMAIL PROTECTED] |
------- Additional Comments From [EMAIL PROTECTED] 2004-02-15 16:34 -------
Well, the problem is in ArchiveIterator::scan_directory(). Around line 502:
# ignore ,234 (deleted or refiled messages) and MH metadata dotfiles
@files = grep { /^[^,.]\S*$/ } readdir(DIR);
It looks like the RE is just a bit overzealous... Can anyone think of a reason
why it shouldn't just be:
# ignore ,234 (deleted or refiled messages) and MH metadata dotfiles
@files = grep { !/^[,.]/ } readdir(DIR);
The rest of the code should deal with spacinated files just fine.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are on the CC list for the bug, or are watching someone who is.