dovecot
This Dovecot Module installs dovecot and configures it using Augeas
Version information
released Aug 13th 2014
This version is compatible with:
- Puppet >=2.7.20 <4.0.0
- Redhat, Ubuntu ,
Start using this module
Add this module to your Puppetfile:
mod 'mjhas-dovecot', '1.0.1'
Learn more about managing modules with a PuppetfileDocumentation
mjhas/dovecot — version 1.0.1 Aug 13th 2014
dovecot
This is the dovecot module. It provides installation and configuration routines using Puppet.
Simplest Configuration:
include dovecot
It will just install the dovecot-imapd package and ensure that dovecot is running.
Real World Configuration:
include dovecot
class { dovecot::ssl:
ssl => 'yes',
ssl_keyfile => '/etc/ssl/private/example_privatekey.pem',
ssl_certfile => '/etc/ssl/certs/example_server.pem',
ssl_ca => '/etc/ssl/certs/CAcert_chain.pem'
}
include dovecot::sieve
class { dovecot::master:
postfix => yes
}
class { dovecot::postgres:
dbname => 'dbname',
dbpassword => 'dbpassword',
dbusername => 'dbuser',
}
include dovecot::mail
class { dovecot::lda:
postmaster_address => 'postmaster@example.org'
}
include dovecot::imap
include dovecot::base
include dovecot::auth
Something more fancy.
Contributors
Copyright 2013 Michael Haslgrübler Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.