Puppet Class: dovecot::lmtp
- Inherited by:
-
dovecot::lmtp::install
- Defined in:
- manifests/lmtp.pp
Overview
20-lmtp.conf
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/lmtp.pp', line 2
class dovecot::lmtp (
Hash[String, Optional[Variant[String,Integer]]] $options,
Hash[String, Optional[Variant[String,Integer]]] $protocol_options,
Hash[String, Optional[Variant[String,Integer]]] $service_options,
Hash[String, Hash] $inet_listeners,
Hash[String, Hash] $unix_listeners,
String $package_name,
) {
include ::dovecot
contain ::dovecot::lmtp::install
contain ::dovecot::lmtp::config
Class['::dovecot::lmtp::install'] ->
Class['::dovecot::lmtp::config'] ~>
Class['::dovecot::service']
}
|