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
|
# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc.
#
# 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; either version 2
# of the License, 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 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.
"""Mixin class with message delivery routines."""
import os
from Mailman import mm_cfg
from Mailman import Errors
from Mailman import Utils
from Mailman import Message
from Mailman.i18n import _
class Deliverer:
def SendSubscribeAck(self, name, password, digest):
pluser = self.getMemberLanguage(name)
if not self.send_welcome_msg:
return
if self.welcome_msg:
welcome = Utils.wrap(self.welcome_msg) + '\n'
else:
welcome = ''
if self.umbrella_list:
addr = self.GetMemberAdminEmail(name)
umbrella = Utils.wrap(_('''\
Note: Since this is a list of mailing lists, administrative
notices like the password reminder will be sent to
your membership administrative address, %(addr)s.'''))
else:
umbrella = ''
# get the text from the template
text = Utils.maketext(
'subscribeack.txt',
{'real_name' : self.real_name,
'host_name' : self.host_name,
'welcome' : welcome,
'umbrella' : umbrella,
'emailaddr' : self.GetListEmail(),
'listinfo_url': self.GetScriptURL('listinfo', absolute=1),
'optionsurl' : self.GetOptionsURL(name, absolute=1),
'password' : password,
}, lang=pluser, mlist=self)
if digest:
digmode = _(' (Digest mode)')
else:
digmode = ''
realname = self.real_name
msg = Message.UserNotification(
self.GetMemberAdminEmail(name), self.GetRequestEmail(),
_('Welcome to the "%(realname)s" mailing list%(digmode)s'),
text)
msg['X-No-Archive'] = 'yes'
msg.send(self)
def SendUnsubscribeAck(self, name):
realname = self.real_name
msg = Message.UserNotification(
self.GetMemberAdminEmail(name), self.GetAdminEmail(),
_('Unsubscribed from "%(realname)s" mailing list'),
Utils.wrap(self.goodbye_msg))
msg.send(self)
def MailUserPassword(self, user):
listfullname = '%s@%s' % (self.real_name, self.host_name)
ok = 1
requestaddr = self.GetRequestEmail()
# find the lowercased version of the user's address
if self.isMember(user) and self.getMemberPassword(user):
cpuser = self.getMemberCPAddress(user)
recipient = self.GetMemberAdminEmail(cpuser)
subject = _('%(listfullname)s mailing list reminder')
adminaddr = self.GetAdminEmail()
# get the text from the template
text = Utils.maketext(
'userpass.txt',
{'user' : cpuser,
'listname' : self.real_name,
'fqdn_lname' : self.GetListEmail(),
'password' : self.passwords[user],
'options_url': self.GetOptionsURL(user, absolute=1),
'requestaddr': requestaddr,
'owneraddr' : self.GetOwnerEmail(),
}, lang=self.getMemberLanguage(user), mlist=self)
else:
ok = 0
recipient = self.GetAdminEmail()
subject = _('%(listfullname)s user %(user)s missing password!')
text = Utils.maketext(
'nopass.txt',
{'username' : `user`,
'internal_name': self.internal_name(),
}, lang=self.getMemberLanguage(user), mlist=self)
msg = Message.UserNotification(recipient, adminaddr, subject, text)
msg['X-No-Archive'] = 'yes'
msg.send(self)
if not ok:
raise Errors.MMBadUserError
|