summaryrefslogtreecommitdiff
path: root/bin/mmsitepass
blob: eace1098954dacaf911033a94c20fa5af3f7f5dd (plain) (blame)
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
#! /usr/bin/env python
#
# Copyright (C) 1998,1999,2000 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.

"""Set the site password, prompting from the terminal.

The site password can be used in most if not all places that the list
administrator's password can be used, which in turn can be used in most places
that a list users password can be used.

Usage: mmsitepass [password]

If password is not given on the command line, it will be prompted for.

"""

import sys
import getpass

import paths
from Mailman import Utils



def main():
    if len(sys.argv) > 2:
        print __doc__
        sys.exit(1)
    elif len(sys.argv) == 2:
        pw1 = sys.argv[1]
    else:
        try:
            pw1 = getpass.getpass("New Password: ")
            pw2 = getpass.getpass("Again to confirm password: ")
            if pw1 <> pw2:
                print 'Passwords do not match; no changes made.'
                sys.exit(1)
        except KeyboardInterrupt:
            print "Interrupted..."
            sys.exit(0)
    # Set the site password by writing it to a local file.  Make sure the
    # permissions don't allow other+read.
    Utils.SetSiteAdminPassword(pw1)
    if Utils.CheckSiteAdminPassword(pw1):
        print 'Password changed.'
    else:
        print 'Password change failed.'



if __name__ == '__main__':
    main()