Defined Type: postfix::mailalias
- Defined in:
- manifests/mailalias.pp
Summary
Manage the content of the Postfix alias mapOverview
Creates an email alias in the local alias database and updates the binary version of said database.
21 22 23 24 25 26 27 28 29 30 31 |
# File 'manifests/mailalias.pp', line 21
define postfix::mailalias (
Variant[String, Array[String]] $recipient,
Enum['present', 'absent'] $ensure = 'present'
) {
mailalias { $title:
ensure => $ensure,
name => $name,
recipient => $recipient,
notify => Exec['newaliases'],
}
}
|