Skip to content
Snippets Groups Projects
Select Git revision
  • 2dc4c41b251ebd2b0aa772d71424703033cba03a
  • master default protected
  • pcre
3 results

transport.pp

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',
      }
    
    }