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

--- Comment #8 from Mark Martinec <[email protected]> 2010-02-16 11:40:46 
UTC ---
> btw would it be possible to default to syslog-socket=none on Win32
> to avoid the errors in bug 6331?

Like this:

-my $log_socket = lc($opt{'syslog-socket'}) || 'unix';
+my $log_socket = lc($opt{'syslog-socket'});

+if (!defined $log_socket || $log_socket eq '') {
+  $log_socket =
+    Mail::SpamAssassin::Util::am_running_on_windows() ? 'none' : 'unix';
+}

-- 
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