Puppet Class: role::antispam

Defined in:
puppet/modules/role/manifests/antispam.pp

Overview

Class: role::antispam

Installs and sets up AntiSpoof, AbuseFilter, SpamBlacklist, and the TitleBlacklist extensions



4
5
6
7
8
9
10
11
12
13
14
# File 'puppet/modules/role/manifests/antispam.pp', line 4

class role::antispam {
    include ::role::abusefilter
    include ::role::antispoof
    include ::role::titleblacklist

    mediawiki::extension { 'SpamBlacklist':
        settings => {
            wgLogSpamBlacklistHits => true,
        },
    }
}