aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Queue
diff options
context:
space:
mode:
authormsapiro <>2006-02-05 04:44:04 +0000
committermsapiro <>2006-02-05 04:44:04 +0000
commitbce0588e8ac4bba9873e242ea09f038539ece00e (patch)
treea71aba0dfac6bf6cf6454b620a09e2b19e9e678d /Mailman/Queue
parent191dd7b5ed48d3e03ed85d17235c692ffeefca42 (diff)
downloadmailman2-bce0588e8ac4bba9873e242ea09f038539ece00e.tar.gz
mailman2-bce0588e8ac4bba9873e242ea09f038539ece00e.tar.xz
mailman2-bce0588e8ac4bba9873e242ea09f038539ece00e.zip
Set umask for creation of bounce-events queue file.
Diffstat (limited to '')
-rw-r--r--Mailman/Queue/BounceRunner.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/Mailman/Queue/BounceRunner.py b/Mailman/Queue/BounceRunner.py
index 76a30470..3fe09ca3 100644
--- a/Mailman/Queue/BounceRunner.py
+++ b/Mailman/Queue/BounceRunner.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2004 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2006 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
@@ -12,7 +12,8 @@
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
"""Bounce queue runner."""
@@ -88,7 +89,11 @@ class BounceMixin:
def _queue_bounces(self, listname, addrs, msg):
today = time.localtime()[:3]
if self._bounce_events_fp is None:
- self._bounce_events_fp = open(self._bounce_events_file, 'a+b')
+ omask = os.umask(006)
+ try:
+ self._bounce_events_fp = open(self._bounce_events_file, 'a+b')
+ finally:
+ os.umask(omask)
for addr in addrs:
cPickle.dump((listname, addr, today, msg),
self._bounce_events_fp, 1)