fix: fixed variable scope

This commit is contained in:
Dominik Meyer 2025-02-07 12:13:48 +01:00
parent 9380ca5698
commit 9a7a1c3d31
Signed by: byterazor
GPG Key ID: EABDA0FD5981BC97

View File

@ -44,7 +44,7 @@ sub hook_queue {
$queue =~ /^lmtp:\/\/(.*):(\d+)$/;
$lmtp_host=$1;
$lmtp_port=$2;
my $lmtp_user = $transaction->notes("destination-user") || "";
$lmtp_user = $transaction->notes("destination-user") || "";
}
else