http://issues.apache.org/SpamAssassin/show_bug.cgi?id=4899
Summary: helper_app_pipe_open_windows doesn't work
Product: Spamassassin
Version: 3.1.1
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: normal
Priority: P5
Component: Plugins
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
The following line is used to pipe a file to stdin on a called program (like
Pyzor):
if ($stdinfile) { $cmd .= " < '$stdinfile'"; }
However, windows XP and 2003 (at least) don't like either the space following
the < nor the single quotes around the filename. The line should read:
if ($stdinfile) { $cmd .= " <\"$stdinfile\""; }
I have verified this works with SA 3.1.1 to call Pyzor.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.