View | Details | Raw Unified | Return to bug 56294
Collapse All | Expand All

(-)mailman-2.1.2/Mailman/Commands/cmd_password.py.2004-0412 (-1 / +5 lines)
Lines 1-4 Link Here
1
# Copyright (C) 2002 by the Free Software Foundation, Inc.
1
# Copyright (C) 2002-2004 by the Free Software Foundation, Inc.
2
#
2
#
3
# This program is free software; you can redistribute it and/or
3
# This program is free software; you can redistribute it and/or
4
# modify it under the terms of the GNU General Public License
4
# modify it under the terms of the GNU General Public License
Lines 49-54 Link Here
49
        if mlist.isMember(address):
49
        if mlist.isMember(address):
50
            password = mlist.getMemberPassword(address)
50
            password = mlist.getMemberPassword(address)
51
            res.results.append(_('Your password is: %(password)s'))
51
            res.results.append(_('Your password is: %(password)s'))
52
            # Prohibit multiple password retrievals.
53
            return STOP
52
        else:
54
        else:
53
            listname = mlist.real_name
55
            listname = mlist.real_name
54
            res.results.append(
56
            res.results.append(
Lines 62-67 Link Here
62
        if mlist.isMember(address):
64
        if mlist.isMember(address):
63
            password = mlist.getMemberPassword(address)
65
            password = mlist.getMemberPassword(address)
64
            res.results.append(_('Your password is: %(password)s'))
66
            res.results.append(_('Your password is: %(password)s'))
67
            # Prohibit multiple password retrievals.
68
            return STOP
65
        else:
69
        else:
66
            listname = mlist.real_name
70
            listname = mlist.real_name
67
            res.results.append(
71
            res.results.append(

Return to bug 56294