1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/postfix/conf/sqlite-virtual_alias_maps.cf

18 lines
259 B
CFEngine3

dbpath = /data/freeposte.db
query =
SELECT destination
FROM alias
WHERE
(
alias.wildcard = 0
AND
alias.email = '%s'
) OR (
alias.wildcard = 1
AND
'%s' LIKE alias.email
)
ORDER BY
alias.wildcard ASC
LIMIT 1