Puppet Class: dovecot::pop3
- Inherited by:
-
dovecot::pop3::install
- Defined in:
- manifests/pop3.pp
Overview
20-pop3.conf See README.md for usage
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/pop3.pp', line 3
class dovecot::pop3 (
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, Optional[Variant[String,Integer]]] $login_options,
Hash[String, Hash] $inet_listeners,
String $package_name,
) {
include ::dovecot
contain ::dovecot::pop3::install
contain ::dovecot::pop3::config
Class['::dovecot::pop3::install'] ->
Class['::dovecot::pop3::config'] ~>
Class['::dovecot::service']
}
|