* lib/Qpsmtpd.pm

Rename config file from memory_threshold to size_threshold to track the
  internal usage.

git-svn-id: https://svn.perl.org/qpsmtpd/branches/0.31@548 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
John Peacock 2005-09-22 17:19:47 +00:00
parent 9cbf206a4a
commit 29ac60322e

View File

@ -418,7 +418,7 @@ sub temp_dir {
sub size_threshold {
my $self = shift;
unless ( defined $Size_threshold ) {
$Size_threshold = $self->config('memory_threshold') || 10_000;
$Size_threshold = $self->config('size_threshold') || 10_000;
$self->log(LOGNOTICE, "size_threshold set to $Size_threshold");
}
return $Size_threshold;