http://bugzilla.spamassassin.org/show_bug.cgi?id=4336
Summary: spamd option won't work for --timeout-child
Product: Spamassassin
Version: SVN Trunk (Latest Devel Version)
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P5
Component: spamc/spamd
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
spot the typo:
if (defined $opt{'timeout-tcp'}) {
$timeout_tcp = $opt{'timeout-tcp'};
$timeout_tcp = undef if ($timeout_tcp < 1);
}
if (defined $opt{'timeout_child'}) {
$timeout_child = $opt{'timeout_child'};
$timeout_child = undef if ($timeout_child < 1);
}
(change $opt{'timeout_child'} to have a '-' instead of a '_')
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.