Puppet Class: dovecot::lda
- Defined in:
- manifests/lda.pp
Overview
15-lda.conf See README.md for usage
3 4 5 6 7 8 9 10 11 |
# File 'manifests/lda.pp', line 3
class dovecot::lda (
Hash[String,Optional[Variant[String,Integer]]] $options,
Optional[String] $mail_plugins,
) {
dovecot::config::dovecotcfhash {'lda':
config_file => 'conf.d/15-lda.conf',
options => merge( $options, { 'protocol/mail_plugins' => $mail_plugins } ),
}
}
|