#! /usr/bin/env python # # Copyright (C) 1998 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. """Produce user options form, from options.html template. Takes listname/userid in PATH_INFO, expecting an `obscured' userid. Depending on the Utils.{O,Uno}bscureEmail utilities tolerance, will work fine with an unobscured ids as well. """ # We don't need to lock in this script, because we're never going to change # data. import sys import os, string from types import StringType from Mailman import Utils, MailList, htmlformat from Mailman import mm_cfg from Mailman import Errors def main(): doc = htmlformat.HeadlessDocument() try: path = os.environ['PATH_INFO'] except KeyError: path = "" list_info = Utils.GetPathPieces(path) # sanity check options if len(list_info) < 2: doc.AddItem(htmlformat.Header(2, "Error")) doc.AddItem(htmlformat.Bold("Invalid options to CGI script.")) print doc.Format() sys.exit(0) # get the list and user's name list_name = string.lower(list_info[0]) user = Utils.UnobscureEmail(list_info[1]) # open list try: mlist = MailList.MailList(list_name, lock=0) except Errors.MMUnknownListError: doc.AddItem(htmlformat.Header(2, "Error")) doc.AddItem(htmlformat.Bold("%s: No such list." % list_name )) print doc.Format() sys.exit(0) # more list sanity checking if not mlist._ready: doc.AddItem(htmlformat.Header(2, "Error")) doc.AddItem(htmlformat.Bold("%s: No such list." % list_name )) print doc.Format() sys.exit(0) # Sanity check the user user = Utils.LCDomain(user) if not mlist.members.has_key(user) \ and not mlist.digest_members.has_key(user): doc.AddItem(htmlformat.Header(2, "Error")) doc.AddItem(htmlformat.Bold("%s: No such member %s." % (list_name, `user`))) doc.AddItem(mlist.GetMailmanFooter()) print doc.Format() sys.exit(0) # find the case preserved email address (the one the user subscribed with) cpuser = mlist.members.get(mlist.FindUser(user)) # Re-obscure the user's address for the page banner if obscure_addresses # set. if mlist.obscure_addresses: presentable_user = Utils.ObscureEmail(user, for_text=1) if type(cpuser) == StringType: cpuser = Utils.ObscureEmail(cpuser, for_text=1) else: presentable_user = user # Do replacements replacements = mlist.GetStandardReplacements() replacements[''] = mlist.FormatOptionButton( mm_cfg.Digests, 1, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.Digests, 0, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.DisableMime, 1, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.DisableMime, 0, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.DisableDelivery, 0, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.DisableDelivery, 1, user) replacements[''] = mlist.FormatDisabledNotice(user) replacements[''] = mlist.FormatOptionButton( mm_cfg.AcknowlegePosts, 0, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.AcknowlegePosts, 1, user) replacements[''] = mlist.FormatOptionButton( mm_cfg.DontReceiveOwnPosts, 0, user) replacements[''] = ( mlist.FormatOptionButton(mm_cfg.DontReceiveOwnPosts, 1, user)) replacements[''] = ( mlist.FormatOptionButton(mm_cfg.ConcealSubscription, 0, user)) replacements[''] = mlist.FormatOptionButton( mm_cfg.ConcealSubscription, 1, user) replacements[''] = mlist.FormatButton( 'setdigest', 'Submit My Changes') replacements[''] = ( mlist.FormatButton('unsub', 'Unsubscribe')) replacements[''] = mlist.FormatSecureBox('digpw') replacements[''] = mlist.FormatSecureBox('upw') replacements[''] = mlist.FormatSecureBox('opw') replacements[''] = mlist.FormatSecureBox('newpw') replacements[''] = mlist.FormatSecureBox('confpw') replacements[''] = ( mlist.FormatSecureBox('othersubspw')) replacements[''] = ( mlist.FormatButton('othersubs', 'List my other subscriptions')) replacements[''] = ( mlist.FormatButton('changepw', "Change My Password")) replacements[''] = ( mlist.FormatFormStart('handle_opts', user)) replacements[''] = user replacements[''] = presentable_user replacements[''] = mlist.FormatButton('emailpw', ('Email My Password' ' To Me')) replacements[''] = ( mlist.FormatUmbrellaNotice(user, "password")) if type(cpuser) == StringType: replacements[''] = ''' You are subscribed to this list with the case-preserved address %s.''' % cpuser else: replacements[''] = '' doc.AddItem(mlist.ParseTags('options.html', replacements)) print doc.Format()