You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mailu/postfix/conf/sqlite-virtual_alias_maps.cf

22 lines
418 B
CFEngine3

dbpath = /data/main.db
query =
SELECT destination
FROM
(SELECT destination, email, wildcard, localpart FROM alias
UNION
SELECT email AS destination, email, 0 as wildcard, localpart FROM user)
WHERE
(
wildcard = 0
AND
email = '%s'
) OR (
wildcard = 1
AND
'%s' LIKE email
)
ORDER BY
wildcard ASC,
length(localpart) DESC
LIMIT 1