Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
The "rmlist" command used a hardcoded path to list data based on the VAR_PREFIX configuration variable. As a consequence, when the list was created outside of VAR_PREFIX, it was impossible to remove it using the "rmlist" command. With this update, the "rmlist" command uses the correct LIST_DATA_DIR value instead of VAR_PREFIX, and it is now possible to remove the list in described situation.
Description of problem:
Using the command "rmlist" will fail if list_data_dir is not a child of var_prefix. The default settings satisfy this requirement, but a user who sets a custom value for list_data_dir in their mm_cfg.py will likely run into this problem.
Version-Release number of selected component (if applicable):
Mailman 2.1.12-18.el6
How reproducible: Deterministic.
Steps to Reproduce:
1. Modify mm_cfg.py. Set VAR_PREFIX = '/srv/mm_var'
2. Create a new mailing list (bin/newlist)
3. Attempt to remove the mailing list (bin/rmlist)
Actual results:
# rmlist -a test6
test6 list info not found as /srv/mm_var/lists/test6
Expected results:
# rmlist -a test8
Removing list info
Additional info:
When a new list is created, the path is obtained by using get_listpath() in Mailman/Site.py. The correct behaviour is shown here.
def get_listpath(listname, domain=None, create=0):
path = os.path.join(mm_cfg.LIST_DATA_DIR, listname)
However, the version of rmlist provided with RHEL uses "lists" as a hardcoded string and joins it with VAR_PREFIX.
REMOVABLES = [
(os.path.join('lists', listname), C_('list info')),
]
for dirtmpl, msg in REMOVABLES:
dir = os.path.join(mm_cfg.VAR_PREFIX, dirtmpl)
remove_it(listname, dir, msg)
Comment 3RHEL Program Management
2013-10-13 23:10:24 UTC
This request was evaluated by Red Hat Product Management for
inclusion in the current release of Red Hat Enterprise Linux.
Because the affected component is not scheduled to be updated
in the current release, Red Hat is unable to address this
request at this time.
Red Hat invites you to ask your support representative to
propose this request, if appropriate, in the next release of
Red Hat Enterprise Linux.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://rhn.redhat.com/errata/RHSA-2015-1417.html
Description of problem: Using the command "rmlist" will fail if list_data_dir is not a child of var_prefix. The default settings satisfy this requirement, but a user who sets a custom value for list_data_dir in their mm_cfg.py will likely run into this problem. Version-Release number of selected component (if applicable): Mailman 2.1.12-18.el6 How reproducible: Deterministic. Steps to Reproduce: 1. Modify mm_cfg.py. Set VAR_PREFIX = '/srv/mm_var' 2. Create a new mailing list (bin/newlist) 3. Attempt to remove the mailing list (bin/rmlist) Actual results: # rmlist -a test6 test6 list info not found as /srv/mm_var/lists/test6 Expected results: # rmlist -a test8 Removing list info Additional info: When a new list is created, the path is obtained by using get_listpath() in Mailman/Site.py. The correct behaviour is shown here. def get_listpath(listname, domain=None, create=0): path = os.path.join(mm_cfg.LIST_DATA_DIR, listname) However, the version of rmlist provided with RHEL uses "lists" as a hardcoded string and joins it with VAR_PREFIX. REMOVABLES = [ (os.path.join('lists', listname), C_('list info')), ] for dirtmpl, msg in REMOVABLES: dir = os.path.join(mm_cfg.VAR_PREFIX, dirtmpl) remove_it(listname, dir, msg)