[svn:qpsmtpd] r548 - branches/0.31/lib
[email protected] 22 Sep 2005 17:19:48 -0000
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
Author: jpeacock
Date: Thu Sep 22 10:19:47 2005
New Revision: 548
Modified:
branches/0.31/lib/Qpsmtpd.pm
Log:
* lib/Qpsmtpd.pm
Rename config file from memory_threshold to size_threshold to track the
internal usage.
Modified: branches/0.31/lib/Qpsmtpd.pm
==============================================================================
--- branches/0.31/lib/Qpsmtpd.pm (original)
+++ branches/0.31/lib/Qpsmtpd.pm Thu Sep 22 10:19:47 2005
@@ -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;