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

19 lines
293 B
CFEngine3
Raw Normal View History

2016-02-17 23:56:40 +02:00
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,
length(alias.localpart) DESC
LIMIT 1