aboutsummaryrefslogtreecommitdiffstats
path: root/bin/mmsitepass
diff options
context:
space:
mode:
author <>2003-01-02 05:25:50 +0000
committer <>2003-01-02 05:25:50 +0000
commitb132a73f15e432eaf43310fce9196ca0c0651465 (patch)
treec15f816ba7c4de99fef510e3bd75af0890d47441 /bin/mmsitepass
downloadmailman2-b132a73f15e432eaf43310fce9196ca0c0651465.tar.gz
mailman2-b132a73f15e432eaf43310fce9196ca0c0651465.tar.xz
mailman2-b132a73f15e432eaf43310fce9196ca0c0651465.zip
This commit was manufactured by cvs2svn to create branch
'Release_2_1-maint'.
Diffstat (limited to 'bin/mmsitepass')
-rwxr-xr-xbin/mmsitepass105
1 files changed, 105 insertions, 0 deletions
diff --git a/bin/mmsitepass b/bin/mmsitepass
new file mode 100755
index 00000000..8ae8bc72
--- /dev/null
+++ b/bin/mmsitepass
@@ -0,0 +1,105 @@
+#! @PYTHON@
+#
+# Copyright (C) 1998,1999,2000,2001,2002 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: %(PROGRAM)s [options] [password]
+
+Options:
+
+ -c/--listcreator
+ Set the list creator password instead of the site password. The list
+ creator is authorized to create and remove lists, but does not have
+ the total power of the site administrator.
+
+ -h/--help
+ Print this help message and exit.
+
+If password is not given on the command line, it will be prompted for.
+"""
+
+import sys
+import getpass
+import getopt
+
+import paths
+from Mailman import Utils
+from Mailman.i18n import _
+
+PROGRAM = sys.argv[0]
+
+
+
+def usage(code, msg=''):
+ if code:
+ fd = sys.stderr
+ else:
+ fd = sys.stdout
+ print >> fd, _(__doc__)
+ if msg:
+ print >> fd, msg
+ sys.exit(code)
+
+
+
+def main():
+ try:
+ opts, args = getopt.getopt(sys.argv[1:], 'ch',
+ ['listcreator', 'help'])
+ except getopt.error, msg:
+ usage(1, msg)
+
+ # Defaults
+ siteadmin = 1
+ pwdesc = _('site')
+
+ for opt, arg in opts:
+ if opt in ('-h', '--help'):
+ usage(0)
+ elif opt in ('-c', '--listcreator'):
+ siteadmin = 0
+ pwdesc = _('list creator')
+
+ if len(args) == 1:
+ pw1 = args[0]
+ else:
+ try:
+ pw1 = getpass.getpass(_('New %(pwdesc)s 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.set_global_password(pw1, siteadmin)
+ if Utils.check_global_password(pw1, siteadmin):
+ print _('Password changed.')
+ else:
+ print _('Password change failed.')
+
+
+
+if __name__ == '__main__':
+ main()