https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6682
--- Comment #3 from Kevin A. McGrail <[email protected]> 2011-10-27 12:23:33 UTC --- (In reply to comment #2) > I have tried it using spamd command directly without embedded in Perl script. > Same behaviour. > > Found the reason, problem is the kill-command using signal "USR1" sent to the > parent process. > > kill("USR1",$originalparent) if ($opt{'daemonize'}); > > Replacing it with "SIGTERM" solves the problem on my server, too. > > So it seems it is not a Perl-dependent problem. What OS are you using? SIGUSR1 is a reserved signal so it should let SA do what it wants with the signal. A SIGTERM just terminates the process. At least that's my understanding. -- Configure bugmail: https://issues.apache.org/SpamAssassin/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
