cookbook 'postfix-dovecot', '= 0.3.0'
postfix-dovecot (9) Versions 0.3.0 Follow9
Installs and configures a mail server using Postfix, Dovecot, PostfixAdmin and SpamAssassin, including Amazon SES support.
cookbook 'postfix-dovecot', '= 0.3.0', :supermarket
knife supermarket install postfix-dovecot
knife supermarket download postfix-dovecot
Description
Installs and configures a mail server using Postfix, Dovecot, PostfixAdmin and SpamAssassin, including Amazon SES support.
Requirements
Platform:
This cookbook has been tested on the following platforms:
- Amazon Linux
- CentOS >= 6.0
- Debian >= 7.0
- Fedora >= 17.0
- Ubuntu >= 12.04
Let me know if you use it successfully on any other platform.
Cookbooks:
Applications:
- Dovecot >= 2: requires this version of dovecot to be available by the distribution's package manager.
Attributes
<table>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><code>node['postfix-dovecot']['postmaster_address']</code></td>
<td>Postmaster mail address.</td>
<td><code>"postmaster@foo.bar"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['hostname']</code></td>
<td>Hostname.</td>
<td><code>node["fqdn"]</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['sieve']['enabled']</code></td>
<td>Whether to enable sieve.</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['sieve']['global_path']</code></td>
<td>Sieve global path.</td>
<td><code>"#{default["dovecot"]["conf_path"]}/sieve/default.sieve"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['spamc']['enabled']</code></td>
<td>Whether to enable SpamAssassin</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['spamc']['recipe']</code></td>
<td>Spamc recipe name to use.</td>
<td><code>"onddo-spamassassin"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['vmail']['user']</code></td>
<td>Virtual mail system user name.</td>
<td><code>"vmail"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['vmail']['group']</code></td>
<td>Virtual mail system group name.</td>
<td><code>node["postfix-dovecot"]["vmail"]["user"]</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['vmail']['uid']</code></td>
<td>Virtual mail system user id.</td>
<td><code>5000</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['vmail']['gid']</code></td>
<td>Virtual mail system group id.</td>
<td><code>node["postfix-dovecot"]["vmail"]["uid"]</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['vmail']['home']</code></td>
<td>Virtual mail user home path.</td>
<td><code>"/var/vmail"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['ses']['enabled']</code></td>
<td>Whether to enable <a href="http://aws.amazon.com/ses/">Amazon SES</a>.</td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['ses']['username']</code></td>
<td>Amazon SES SMTP username. See the <a href="http://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html"><em>Obtaining Your Amazon SES SMTP Credentials</em> documentation</a>.</td>
<td><code>"USERNAME"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['ses']['password']</code></td>
<td>Amazon SES SMTP password.</td>
<td><code>"PASSWORD"</code></td>
</tr>
<tr>
<td><code>node['postfix-dovecot']['ses']['servers']</code></td>
<td>Amazon SES SMTP servers.</td>
<td><code>[<br/>
'email-smtp.us-east-1.amazonaws.com:25',<br/>
'ses-smtp-prod-335357831.us-east-1.elb.amazonaws.com:25'<br/>
]</code></td>
</tr>
</table>
Recipes
postfix-dovecot::default
Installs and configures everything.
postfix-dovecot::vmail
Creates vmail user.
postfix-dovecot::spam
Installs and configures SpamAssassin.
postfix-dovecot::postfix-full
Installs and configures Postfix.
postfix-dovecot::postfixadmin
Installs and configures PostfixAdmin.
postfix-dovecot::dovecot
Installs and configures Dovecot 2.
Usage Example
Including in a Cookbook Recipe
Running it from a recipe:
node['postfix-dovecot']['postmaster_address'] = 'postmaster@foobar.com' node['postfix-dovecot']['hostname'] = 'mail.foobar.com' include_recipe 'postfix-dovecot::default' postfixadmin_admin 'admin@admindomain.com' do password 'sup3r-s3cr3t-p4ss' action :create end postfixadmin_domain 'foobar.com' do login_username 'admin@admindomain.com' login_password 'sup3r-s3cr3t-p4ss' end postfixadmin_mailbox 'bob@foobar.com' do password 'alice' login_username 'admin@admindomain.com' login_password 'sup3r-s3cr3t-p4ss' end postfixadmin_alias 'billing@foobar.com' do goto 'bob@foobar.com' login_username 'admin@admindomain.com' login_password 'sup3r-s3cr3t-p4ss' end
Don't forget to include the postfix-dovecot
cookbook as a dependency in the metadata.
# metadata.rb [...] depends 'postfix-dovecot'
Including in the Run List
Another alternative is to include the default recipe in your Run List.
{ "name": "mail.onddo.com", [...] "run_list": [ [...] "recipe[postfix-dovecot]" ] }
Testing
Requirements
vagrant
-
berkshelf
>=1.4.0
-
test-kitchen
>=1.0.0.alpha
-
kitchen-vagrant
>=0.10.0
Running the tests
$ kitchen test $ kitchen verify [...]
Running the tests in the cloud
Requirements:
-
kitchen-vagrant
>=0.10
-
kitchen-digitalocean
>=0.5
-
kitchen-ec2
>=0.8
You can run the tests in the cloud instead of using vagrant. First, you must set the following environment variables:
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
-
AWS_KEYPAIR_NAME
: EC2 SSH public key name. This is the name used in Amazon EC2 Console's Key Pars section. -
EC2_SSH_KEY_PATH
: EC2 SSH private key local full path. Only when you are not using an SSH Agent. DIGITAL_OCEAN_CLIENT_ID
DIGITAL_OCEAN_API_KEY
-
DIGITAL_OCEAN_SSH_KEY_IDS
: DigitalOcean SSH numeric key IDs. -
DIGITAL_OCEAN_SSH_KEY_PATH
: DigitalOcean SSH private key local full path. Only when you are not using an SSH Agent.
Then, you must configure test-kitchen to use .kitchen.cloud.yml
configuration file:
$ export KITCHEN_LOCAL_YAML=".kitchen.cloud.yml"
$ kitchen list
[...]
Amazon SES Tests
You need to set the following environment variables:
-
AMAZON_SES_EMAIL_FROM
: SES valid from address, only used in tests -
AMAZON_SES_SMTP_USERNAME
: See Obtaining Your Amazon SES SMTP Credentials documentation. AMAZON_SES_SMTP_PASSWORD
Then, you must configure test-kitchen to use .kitchen.ses.yml configuration file:
$ export AMAZON_SES_EMAIL_FROM="no-reply@sesdomain.com"
$ export AMAZON_SES_SMTP_USERNAME="..."
$ export AMAZON_SES_SMTP_PASSWORD="..."
$ export KITCHEN_LOCAL_YAML=".kitchen.ses.yml"
$ kitchen list
[...]
Contributing
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
License and Author
Author: | Xabier de Zuazo (xabier@onddo.com) |
Copyright: | Copyright (c) 2013-2014 Onddo Labs, SL. (www.onddo.com) |
License: | Apache License, Version 2.0 |
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.
Dependent cookbooks
dovecot >= 0.0.0 |
onddo-spamassassin >= 0.0.0 |
postfixadmin < 1.0.0 |
postfix-full >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
CHANGELOG for postfix-dovecot
This file is used to list changes made in each version of postfix-dovecot
.
0.3.0:
-
.kitchen.local.yml
.example renamed to.kitchen.ses.yml
. - Ensure /etc/mailname file creation.
-
Gemfile
: some gem versions updated. -
kitchen.yml
: updated to support latest test-kitchen format. -
README
: Amazon SES Tests section: KITCHEN_LOCAL_YAML variable value fixed. - Added Fedora and Amazon Linux support.
- Added
kitchen.cloud.yml
file -
postfix-dovecot_test
metadata: added name. -
kitchen.yml
: Added forwarded port andrecipe[apt]
to the runlist. - Depends on
postfixadmin
cookbook version< 1.0.0
.
0.2.0:
- Added Amazon SES support.
- Added SES tests.
- Fixed resolv.conf inside chroot in CentOS.
0.1.0:
- Initial release of
postfix-dovecot
Foodcritic Metric
0.3.0 passed this metric
0.3.0 passed this metric