Commit ae21bd35 authored by Ben Hocker's avatar Ben Hocker
Browse files

Merge branch 'upstream_master' into issue-postfixldap

Conflicts:
	spec/classes/postfix_spec.rb
parents 61761ea0 37052f43
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
---
.travis.yml:
  forge_password: "XAv4O363tng0KuRnu1ZhhwORy+2CF9UQwdwlFmS+NG9jOaTZZN+PMK8iC7OSIvZN6cfKlYjHRHNuxFBnYlnMrLsM9fVxt4NjjznOgIKQpQDleWk4UitZj5ntyHmUtYtofUd5Bhi/sdYXwGN9pVRCrcfFBmsIRq/dOhXD7Wy5KcQ="
#README.md:
#  include: ['.sync/simple_usage.md', '.sync/classes.md']

.sync/classes.md

0 → 100644
+24 −0
Original line number Diff line number Diff line
## Classes

### postfix

The top-level class, to install and configure Postfix.

## Definitions

### postfix::config

Add/alter/remove options in Postfix main configuration file (main.cf)

### postfix::hash

Creates Postfix hashed "map" files, and build the corresponding db file.

### postfix::transport

Manages content in the transport map.

### postfix::virtual

Manages content in the virtual map.

.sync/simple_usage.md

0 → 100644
+22 −0
Original line number Diff line number Diff line
This module requires Augeas.

## Simple usage

    include postfix

    postfix::config { "relay_domains": value  => "localhost host.foo.com" }

## Exec paths

In order to not have any path problem, you should add the following line in
some globally included .pp file:

    Exec {
      path => '/some/relevant/path:/some/other:...',
    }

For example:

    Exec {
      path => '/bin:/sbin:/usr/sbin:/usr/bin',
    }
+11 −0
Original line number Diff line number Diff line
## 2015-03-24 - Release 1.1.1

- Various spec improvements

## 2015-02-19 - Release 1.1.0

- Various specs improvements
- Fix specs for postfix::config with ensure => blank 
- Simplify relationships and avoid spaceship operators
- nexthop parameter is not necessary for postfix::canonical

## 2015-01-07 - Release 1.0.5

- Fix unquoted strings in cases

CONTRIBUTING.md

0 → 100644
+8 −0
Original line number Diff line number Diff line
# How to contribute

Please report bugs and feature request using [GitHub issue
tracker](https://github.com/camptocamp/puppet-postfix/issues).

For pull requests, it is very much appreciated to check your Puppet manifest
with [puppet-lint](https://github.com/rodjek/puppet-lint) to follow the recommended Puppet style guidelines from the
[Puppet Labs style guide](http://docs.puppetlabs.com/guides/style_guide.html).
Loading