summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/Acknowledge.py
diff options
context:
space:
mode:
authorBarry Warsaw2008-01-24 05:18:02 -0500
committerBarry Warsaw2008-01-24 05:18:02 -0500
commit36ebacf60b8fe78e20b9c18f6c08d73271922fc4 (patch)
treead8f58134915af75a1dfff73fd801904750173a2 /Mailman/Handlers/Acknowledge.py
parenta76cbbcac84319245a0afb4a4dee32d4d4c79622 (diff)
downloadmailman-36ebacf60b8fe78e20b9c18f6c08d73271922fc4.tar.gz
mailman-36ebacf60b8fe78e20b9c18f6c08d73271922fc4.tar.zst
mailman-36ebacf60b8fe78e20b9c18f6c08d73271922fc4.zip
Diffstat (limited to 'Mailman/Handlers/Acknowledge.py')
-rw-r--r--Mailman/Handlers/Acknowledge.py65
1 files changed, 0 insertions, 65 deletions
diff --git a/Mailman/Handlers/Acknowledge.py b/Mailman/Handlers/Acknowledge.py
deleted file mode 100644
index 078c3ac92..000000000
--- a/Mailman/Handlers/Acknowledge.py
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright (C) 1998-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
-# USA.
-
-"""Send an acknowledgement of the successful post to the sender.
-
-This only happens if the sender has set their AcknowledgePosts attribute.
-This module must appear after the deliverer in the message pipeline in order
-to send acks only after successful delivery.
-
-"""
-
-from Mailman import Errors
-from Mailman import Message
-from Mailman import Utils
-from Mailman.configuration import config
-from Mailman.i18n import _
-
-__i18n_templates__ = True
-
-
-
-def process(mlist, msg, msgdata):
- # Extract the sender's address and find them in the user database
- sender = msgdata.get('original_sender', msg.get_sender())
- member = mlist.members.get_member(sender)
- if member is None:
- return
- ack = member.acknowledge_posts
- if not ack:
- return
- # Okay, they want acknowledgement of their post. Give them their original
- # subject. BAW: do we want to use the decoded header?
- origsubj = msgdata.get('origsubj', msg.get('subject', _('(no subject)')))
- # Get the user's preferred language
- lang = msgdata.get('lang', member.preferred_language)
- # Now get the acknowledgement template
- realname = mlist.real_name
- text = Utils.maketext(
- 'postack.txt',
- {'subject' : Utils.oneline(origsubj, Utils.GetCharSet(lang)),
- 'listname' : realname,
- 'listinfo_url': mlist.script_url('listinfo'),
- 'optionsurl' : member.options_url,
- }, lang=lang, mlist=mlist, raw=True)
- # Craft the outgoing message, with all headers and attributes
- # necessary for general delivery. Then enqueue it to the outgoing
- # queue.
- subject = _('$realname post acknowledgment')
- usermsg = Message.UserNotification(sender, mlist.bounces_address,
- subject, text, lang)
- usermsg.send(mlist)