------------------------------------------------------------ revno: 1761 fixes bug: https://launchpad.net/bugs/1774986 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.1 timestamp: Mon 2018-06-04 08:54:31 -0700 message: Changed mailman-config to single-quote parameters. modified: NEWS bin/mailman-config
-- lp:mailman/2.1 https://code.launchpad.net/~mailman-coders/mailman/2.1 Your team Mailman Checkins is subscribed to branch lp:mailman/2.1. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'NEWS' --- NEWS 2018-06-04 01:12:09 +0000 +++ NEWS 2018-06-04 15:54:31 +0000 @@ -60,6 +60,9 @@ a message will be displayed on the subscribe form that JavaScript is required. (LP: #1769374) + - Quoting in the mailman-config command has been changed from double to + single quotes to allow double-quoted parameters. (LP:1774986) + 2.1.26 (04-Feb-2018) Security === modified file 'bin/mailman-config' --- bin/mailman-config 2018-01-11 05:03:17 +0000 +++ bin/mailman-config 2018-06-04 15:54:31 +0000 @@ -24,17 +24,17 @@ print """Configuration and build information for Mailman\n""" -print "Mailman version: %s" % "@MM_VERSION@" -print "Build Date: %s" % "@BUILD_DATE@" -print "" -print "prefix: %s" % "@prefix@" -print "var_prefix: %s" % "@VAR_PREFIX@" -print "mailman_user: %s" % "@MAILMAN_USER@" -print "mailman_group: %s" % "@MAILMAN_GROUP@" -print "mail_group: %s" % "@MAIL_GROUP@" -print "cgi_group: %s" % "@CGI_GROUP@" -print "" - - -print "configure_opts: \"%s\"" % "@CONFIGURE_OPTS@" +print 'Mailman version: %s' % '@MM_VERSION@' +print 'Build Date: %s' % '@BUILD_DATE@' +print '' +print 'prefix: %s' % '@prefix@' +print 'var_prefix: %s' % '@VAR_PREFIX@' +print 'mailman_user: %s' % '@MAILMAN_USER@' +print 'mailman_group: %s' % '@MAILMAN_GROUP@' +print 'mail_group: %s' % '@MAIL_GROUP@' +print 'cgi_group: %s' % '@CGI_GROUP@' +print '' + + +print 'configure_opts: "%s"' % '@CONFIGURE_OPTS@'
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org