Skip to content
Snippets Groups Projects
Select Git revision
  • 2d0da8ec5476c20d3fa14a184c5fa982da6e3771
  • master default protected
  • release_1.4.0
  • release_1.3.0
  • release_1.2.0
  • 8.4
  • release_1.1.0
  • release_1.0.6
  • release_1.0.5
  • release_1.0.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.7
  • 1.0.6
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
21 results

agent.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    mailman.pp 681 B
    # == Class: postfix::mailman
    #
    # Configures a basic smtp server, able to work for the mailman mailing-list
    # manager.
    #
    # === Examples
    #
    # /!\ Do not include this class directly,
    # use mailman => true in the postfix top class!
    #
    #   class { 'postfix':
    #     mailman => true,
    #   }
    class postfix::mailman {
    
      postfix::config {
        'virtual_alias_maps':
          value => 'hash:/etc/postfix/virtual';
        'transport_maps':
          value => 'hash:/etc/postfix/transport';
        'mailman_destination_recipient_limit':
          value => '1';
      }
    
      postfix::hash { '/etc/postfix/virtual':
        ensure => 'present',
      }
    
      postfix::hash { '/etc/postfix/transport':
        ensure => 'present',
      }
    
    }