From ae70268af9521c3ec911b0361e3d943c5acc8a90 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 9 Jan 2001 21:48:23 +0000 Subject: Let the system umask determine the permissions of this file. 2001-01-09 Jeffrey Stedfast * mail-ops.c (save_messages_save): Let the system umask determine the permissions of this file. svn path=/trunk/; revision=7341 --- mail/ChangeLog | 3 +++ mail/mail-ops.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 2056b295b1..28060b4e2d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2001-01-09 Jeffrey Stedfast + * mail-ops.c (save_messages_save): Let the system umask determine + the permissions of this file. + * mail-config-druid.c (incoming_type_changed): Gray out the appropriate labels too. (auth_type_changed): And here. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 632958c458..6dec663e7b 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1897,7 +1897,7 @@ static void save_messages_save(struct _mail_msg *mm) int fd, i; char *from; - fd = open(m->path, O_WRONLY | O_CREAT | O_TRUNC, 0600); + fd = open(m->path, O_WRONLY | O_CREAT | O_TRUNC); if (fd == -1) { camel_exception_setv(&mm->ex, CAMEL_EXCEPTION_SYSTEM, _("Unable to create output file: %s\n %s"), m->path, strerror(errno)); -- cgit v1.2.3