Skip to content
Snippets Groups Projects
Select Git revision
  • 5ce4ede5af008499f8f0f01ca79f26788f68da90
  • master default protected
2 results

rendering_of_calculations.py

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