Welcome to mirror list, hosted at ThFree Co, Russian Federation.

anti_spam.py « anti_spam - dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3feda083a0bc19e647c286ae50ecd929412a4e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This file is part of Gajim.
#
# Gajim is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation; version 3 only.
#
# Gajim is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Gajim.  If not, see <http://www.gnu.org/licenses/>.

'''
:author: Yann Leboulanger <asterix@lagaule.org>
:since: 16 August 2012
:copyright: Copyright (2012) Yann Leboulanger <asterix@lagaule.org>
:license: GPLv3
'''

from functools import partial

from gajim.plugins import GajimPlugin
from gajim.plugins.plugins_i18n import _

from anti_spam.modules import anti_spam
from anti_spam.config_dialog import AntiSpamConfigDialog


class AntiSpamPlugin(GajimPlugin):
    def init(self) -> None:
        self.description = _('Allows you to block various kinds of incoming '
                             'messages (Spam, XHTML formatting, etc.)')
        self.config_dialog = partial(AntiSpamConfigDialog, self)
        self.config_default_values = {
            'disable_xhtml_muc': (False, ''),
            'disable_xhtml_pm': (False, ''),
            'block_subscription_requests': (False, ''),
            'msgtxt_limit': (0, ''),
            'msgtxt_question': ('12 x 12 = ?', ''),
            'msgtxt_answer': ('', ''),
            'antispam_for_conference': (False, ''),
            'block_domains': ('', ''),
            'whitelist': ([], ''),
        }
        self.gui_extension_points = {}
        self.modules = [anti_spam]