Add support for almalinux10 (#210)

This commit is contained in:
hollistermala
2025-07-30 13:13:31 -07:00
committed by GitHub
parent 61a3fae922
commit 9e05c0f0be
10 changed files with 51 additions and 24 deletions

View File

@@ -2,6 +2,12 @@ recipient_canonical =
case os.family
when 'suse'
'/etc/postfix/recipient_canonical.lmdb'
when 'redhat'
if os.release.to_i >= 10
'/etc/postfix/recipient_canonical'
else
'/etc/postfix/recipient_canonical.db'
end
else
'/etc/postfix/recipient_canonical.db'
end