Skip to content

Commit

Permalink
* lib/Qpsmtpd.pm
Browse files Browse the repository at this point in the history
  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
  • Loading branch information
John Peacock committed Sep 22, 2005
1 parent 9cbf206 commit 29ac603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Qpsmtpd.pm
Expand Up @@ -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;
Expand Down

0 comments on commit 29ac603

Please sign in to comment.