From 265672ce2b5d703811f210d4cd5b047d1ef81da4 Mon Sep 17 00:00:00 2001 From: Andreas Erhard <85556911+wornet-aer@users.noreply.github.com> Date: Mon, 4 Sep 2023 18:47:24 +0200 Subject: [PATCH] Add missing use statement for NetAddr::IP to whitelist plugin (#310) I forgot to add the use statement from #287 when adding the ip-range whitelist feature in 2021. --- plugins/whitelist | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/whitelist b/plugins/whitelist index 3f9c10e..e79da8e 100644 --- a/plugins/whitelist +++ b/plugins/whitelist @@ -99,6 +99,7 @@ use strict; use warnings; use Qpsmtpd::Constants; +use NetAddr::IP; my $VERSION = 0.02;