* lib/Qpsmtpd.pm

Remove needless restriction on temp_file()


git-svn-id: https://svn.perl.org/qpsmtpd/trunk@406 958fd67b-6ff1-0310-b445-bb7760255be9
This commit is contained in:
John Peacock 2005-04-18 14:40:33 +00:00
parent 270f9c9a70
commit a5b362f9ff

View File

@ -356,7 +356,6 @@ sub temp_file {
my $self = shift; my $self = shift;
my $filename = $self->spool_dir() my $filename = $self->spool_dir()
. join(":", time, $$, $transaction_counter++); . join(":", time, $$, $transaction_counter++);
$filename =~ tr!A-Za-z0-9:/_-!!cd;
return $filename; return $filename;
} }