From 29ac60322e0c25b318b17e44452fd1a99c845627 Mon Sep 17 00:00:00 2001 From: John Peacock Date: Thu, 22 Sep 2005 17:19:47 +0000 Subject: [PATCH] * 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 --- lib/Qpsmtpd.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Qpsmtpd.pm b/lib/Qpsmtpd.pm index 4e86f6d..8064cd4 100644 --- a/lib/Qpsmtpd.pm +++ b/lib/Qpsmtpd.pm @@ -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;