Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 641569 Details for
Bug 874397
Mailman makes multiple mails having the same sequence number, namely makes duplicated sequence number in subject prefix.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
proposed patch
mailman-2.19-lockrace.patch (text/plain), 1.06 KB, created by
Jan Kaluža
on 2012-11-09 14:10:58 UTC
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Jan Kaluža
Created:
2012-11-09 14:10:58 UTC
Size:
1.06 KB
patch
obsolete
>diff --git a/Mailman/MailList.py b/Mailman/MailList.py >index 0905c88..462bdb3 100644 >--- a/Mailman/MailList.py >+++ b/Mailman/MailList.py >@@ -589,7 +589,7 @@ class MailList(HTMLFormatter, Deliverer, ListAdmin, > # to ENOENT (EnvironmentError is the base class of IOError and > # OSError). > mtime = os.path.getmtime(dbfile) >- if mtime <= self.__timestamp: >+ if mtime < self.__timestamp: > # File is not newer > return None, None > fp = open(dbfile) >diff --git a/Mailman/Queue/IncomingRunner.py b/Mailman/Queue/IncomingRunner.py >index 71d9391..21b0978 100644 >--- a/Mailman/Queue/IncomingRunner.py >+++ b/Mailman/Queue/IncomingRunner.py >@@ -130,6 +130,8 @@ class IncomingRunner(Runner): > more = self._dopipeline(mlist, msg, msgdata, pipeline) > if not more: > del msgdata['pipeline'] >+ while not mlist.Locked(): >+ mlist.Lock(timeout=mm_cfg.LIST_LOCK_TIMEOUT) > mlist.Save() > return more > finally:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 874397
: 641569 |
643977