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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# -*- coding: utf-8 -*-
# Copyright 2010-2011 Kolab Systems AG (http://www.kolabsys.com)
#
# Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen a kolabsys.com>
#
# This program 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 or, at your option, any later version
#
# This program 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 Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
import pykolab
from pykolab import utils
from pykolab.translate import _
conf = pykolab.getConf()
log = pykolab.getLogger('pykolab.plugins.recipientpolicy')
class KolabRecipientpolicy(object):
"""
Example plugin making quota adjustments given arbitrary conditions.
"""
def __init__(self):
pass
def add_options(self, *args, **kw):
pass
#def mail_domain_space_policy_check(self, kw={}, args=()):
#(mail, alternative_mail, domain_name, domain_root_dn) = args
## Your actions go here. For example:
#return (mail, alternative_mail)
def set_primary_mail(self, *args, **kw):
"""
The arguments passed to the 'set_user_attrs_mail' hook:
primary_mail - the policy
user_attrs - the current user attributes
primary_domain - the domain to use in the primary mail attribute
secondary_domains - the secondary domains that are aliases
Return the new primary mail address
"""
user_attrs = utils.normalize(kw['user_attrs'])
if not user_attrs.has_key('domain'):
user_attrs['domain'] = kw['primary_domain']
elif not user_attrs['domain'] == kw['primary_domain']:
user_attrs['domain'] = kw['primary_domain']
try:
mail = kw['primary_mail'] % user_attrs
return utils.translate(mail.lower(), user_attrs['preferredLanguage'])
except KeyError, e:
log.warning(_("Attribute substitution for 'mail' failed in Recipient Policy"))
return user_attrs['mail'].lower()
def set_secondary_mail(self, *args, **kw):
"""
The arguments passed to the 'set_user_attrs_alternative_mail' hook:
primary_mail - the policy
user_attrs - the current user attributes
primary_domain - the domain to use in the primary mail attribute
secondary_domains - the secondary domains that are aliases
Return a list of secondary mail addresses
"""
user_attrs = utils.normalize(kw['user_attrs'])
if not user_attrs.has_key('domain'):
user_attrs['domain'] = kw['primary_domain']
elif not user_attrs['domain'] == kw['primary_domain']:
user_attrs['domain'] = kw['primary_domain']
try:
exec("alternative_mail_routines = %s" % kw['secondary_mail'])
except Exception, e:
log.error(_("Could not parse the alternative mail routines"))
alternative_mail = []
#print "%r" %(alternative_mail_routines)
_domains = [ kw['primary_domain'] ] + kw['secondary_domains']
for number in alternative_mail_routines.keys():
for routine in alternative_mail_routines[number].keys():
try:
exec("retval = '%s'.%s" % (routine,alternative_mail_routines[number][routine] % user_attrs))
except KeyError, e:
log.warning(_("Attribute substitution for 'alternative_mail' failed in Recipient Policy"))
#log.debug(_("Appending additional mail address: %s") %(retval), level=8)
alternative_mail.append(utils.translate(retval), user_attrs['preferredLanguage'])
for _domain in kw['secondary_domains']:
user_attrs['domain'] = _domain
try:
exec("retval = '%s'.%s" % (routine,alternative_mail_routines[number][routine] % user_attrs))
except KeyError, e:
log.warning(_("Attribute substitution for 'alternative_mail' failed in Recipient Policy"))
#log.debug(_("Appending additional mail address: %s") %(retval), level=8)
alternative_mail.append(utils.translate(retval))
alternative_mail = utils.normalize(alternative_mail)
alternative_mail = list(set(alternative_mail))
return alternative_mail
|