Change creation mode of maildir aux files to prevent mode 0000 files. Hardwired...
authorNigel Metheringham <nigel@exim.org>
Fri, 16 May 2008 12:02:19 +0000 (12:02 +0000)
committerNigel Metheringham <nigel@exim.org>
Fri, 16 May 2008 12:02:19 +0000 (12:02 +0000)
doc/doc-txt/ChangeLog
src/src/transports/tf_maildir.c

index 5350be8794500de6e666d915f1d6acc47a5e2278..f760487b7f6b881699d74bae3c290b4d69f06a89 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.546 2008/03/27 13:23:40 tom Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.547 2008/05/16 12:02:19 nm4 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -49,6 +49,10 @@ NM/05 Bugzilla 521: Integrated SPF Best Guess support contributed by
 
 TF/04 Bugzilla 668: Fix parallel build (make -j).
 
+NM/05 Bugzilla 437: Prevent Maildix aux files being created with mode 000
+
+
+
 
 Exim version 4.69
 -----------------
index 8d926d84fd83f83bfc34f513725be0cda28db8c3..26c999b0ce761a4697a961049b92bbe715cf5809 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/transports/tf_maildir.c,v 1.10 2007/01/08 10:50:20 ph10 Exp $ */
+/* $Cambridge: exim/src/src/transports/tf_maildir.c,v 1.11 2008/05/16 12:02:19 nm4 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -169,7 +169,7 @@ if (maildirfolder_create_regex != NULL)
       }
     else
       {
-      int fd = Uopen(fname, O_WRONLY|O_APPEND|O_CREAT, 0);
+      int fd = Uopen(fname, O_WRONLY|O_APPEND|O_CREAT, 0600);
       if (fd < 0)
         {
         addr->message = string_sprintf("appendfile: failed to create "
@@ -392,7 +392,7 @@ the same thing. */
 filename = string_sprintf("%s/maildirsize", path);
 
 DEBUG(D_transport) debug_printf("looking for maildirsize in %s\n", path);
-fd = Uopen(filename, O_RDWR|O_APPEND, 0);
+fd = Uopen(filename, O_RDWR|O_APPEND, 0600);
 if (fd < 0)
   {
   if (errno != ENOENT) return -1;