git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@703 a1433add-5e2c-0410-b055-b7f2511e0802
postfixadmin-2.3
David Goodwin 15 years ago
parent 6f653b1697
commit 1432d7c806

@ -327,9 +327,9 @@ sub find_real_address {
$logger->debug("Found '\$email'\ has vacation active");
} else {
$logger->debug("Looking for alias records that \'$email\' resolves to with vacation turned on");
$query = qq{SELECT goto FROM alias WHERE address=? AND (goto LIKE ?,% OR goto LIKE %,? OR goto LIKE %,?,%)};
$query = qq{SELECT goto FROM alias WHERE address=? AND (goto LIKE ? OR goto LIKE % OR goto LIKE ?)};
$stm = $dbh->prepare($query) or panic_prepare($query);
$stm->execute($email,$email,$email,$email) or panic_execute($query,"address='$email'");
$stm->execute($email,"$email,%","%,$email","%,$email,%") or panic_execute($query,"address='$email'");
$rv = $stm->rows;
# Recipient is an alias, check if mailbox has vacation

Loading…
Cancel
Save