https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6331

Daniel <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Daniel <[email protected]> 2010-02-11 12:50:55 UTC ---
@@ -427,7 +428,13 @@
 # gets mapped to --syslog=stderr and such --syslog-socket=file. An internal
 # socket of 'none' means as much as --syslog=null. Sounds complicated? It is.
 # But it works.
-my $log_socket = lc($opt{'syslog-socket'}) || 'unix';
+my $log_socket;
+if (!Mail::SpamAssassin::Util::am_running_on_windows()) {
+    $log_socket = lc($opt{'syslog-socket'}) || 'unix';
+} else {
+    $log_socket = "none";
+}

 # This is the default log file; it can be changed on the command line
 # via a --syslog flag containing non-word characters.

-- 
Configure bugmail: 
https://issues.apache.org/SpamAssassin/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

Reply via email to