# SPDX-License-Identifier: GPL-2.0-or-later package Amavis::Lookup::Label; use strict; use re 'taint'; # Make an object out of the supplied string, to serve as label # in log messages generated by sub lookup # sub new($$) { my($class,$str) = @_; bless \$str, $class } sub display($) { ${$_[0]} } 1;