Version information
released Jul 9th 2013
Start using this module
Add this module to your Puppetfile:
mod 'thias-dovecot', '0.1.1'
Learn more about managing modules with a PuppetfileDocumentation
thias/dovecot — version 0.1.1 Jul 9th 2013
puppet-dovecot
Overview
Install, enable and configure the Dovecot IMAP server. This module relies heavily on the conf.d structure adopted by dovecot 2.x.
dovecot
: Main classdovecot::file
: Definition to manage configuration file snippetsdovecot::plugin
: Definition to install plugin sub-packages
Examples
class { 'dovecot':
plugins => [ 'mysql', 'pigeonhole' ],
protocols => 'imap pop3 sieve',
verbose_proctitle => 'yes',
auth_include => 'sql',
mail_location => 'maildir:~/Maildir',
auth_listener_userdb_mode => '0660',
auth_listener_userdb_group => 'vmail',
auth_listener_postfix => true,
ssl_cert => '/etc/pki/tls/certs/wildcard.example.com.crt',
ssl_key => '/etc/pki/tls/private/wildcard.example.com.key',
postmaster_address => 'postmaster@example.com',
hostname => 'mail.example.com',
lda_mail_plugins => '$mail_plugins sieve',
auth_sql_userdb_static => 'uid=vmail gid=vmail home=/home/vmail/%d/%n',
log_timestamp => '%Y-%m-%d %H:%M:%S ',
}
dovecot::file { 'dovecot-sql.conf.ext':
source => 'puppet:///modules/example/dovecot-sql.conf.ext',
}
2013-07-09 - 0.1.1
- Parameterize the log_timestamp setting (Brendan Murtagh).
2013-05-24 - 0.1.0
- Update README and use markdown.
- Change to 2-space indent.
- Prefix all puppet variables with @ in the templates.
2012-09-18 - 0.0.1
- Clean up the dovecot module, update everything for dovecot 2.x.
Copyright (C) 2011-2013 Matthias Saou 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.