release v1.2.2

This commit is contained in:
jtimberman 2012-08-28 17:01:57 -06:00
parent 223907dbb0
commit 31ffb1afc2
3 changed files with 19 additions and 2 deletions

View File

@ -1,3 +1,11 @@
## v1.2.2:
* [COOK-1442] - Missing ['postfix']['domain'] Attribute causes initial installation failure
* [COOK-1520] - Add support for procmail delivery
* [COOK-1528] - Make aliasses template less specific
* [COOK-1538] - Add iptables_rule template
* [COOK-1540] - Add smtpd_milters and non_smtpd_milters parameters to main.cf
## v1.2.0: ## v1.2.0:
* [COOK-880] - add client/server roles for search-based discovery of * [COOK-880] - add client/server roles for search-based discovery of

View File

@ -16,6 +16,8 @@ Requirements
* RHEL/CentOS/Scientific 5.7+, 6.2+ * RHEL/CentOS/Scientific 5.7+, 6.2+
* Amazon Linux (as of AMIs created after 4/9/2012) * Amazon Linux (as of AMIs created after 4/9/2012)
May work on other platforms with or without modification.
Attributes Attributes
========== ==========
@ -59,7 +61,14 @@ See `attributes/default.rb` for default values.
information. information.
* `node['postfix']['use_procmail']` - set to true if nodes should use * `node['postfix']['use_procmail']` - set to true if nodes should use
procmail as the delivery agent (mailbox_command). procmail as the delivery agent (mailbox_command).
* `node['postfix']['milter_default_action']` - corresponds to the
`milter_default_action` option in `/etc/postfix/main.cf`.
* `node['postfix']['milter_protocol']` - corresponds to the
`milter_protocol` option in `/etc/postfix/main.cf`.
* `node['postfix']['smtpd_milters']` - corresponds to the
`smtpd_milters` option in `/etc/postfix/main.cf`.
* `node['postfix']['non_smtpd_milters']` - corresponds to the
`non_smtpd_milters` option in `/etc/postfix/main.cf`.
Recipes Recipes
======= =======

View File

@ -2,7 +2,7 @@ maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com" maintainer_email "cookbooks@opscode.com"
license "Apache 2.0" license "Apache 2.0"
description "Installs and configures postfix for client or outbound relayhost, or to do SASL auth" description "Installs and configures postfix for client or outbound relayhost, or to do SASL auth"
version "1.2.0" version "1.2.2"
recipe "postfix", "Installs and configures postfix" recipe "postfix", "Installs and configures postfix"
recipe "postfix::sasl_auth", "Set up postfix to auth to a server with sasl" recipe "postfix::sasl_auth", "Set up postfix to auth to a server with sasl"
recipe "postfix::aliases", "Manages /etc/aliases" recipe "postfix::aliases", "Manages /etc/aliases"