]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Dkim_keygen: Use 0640 instead of 0600
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 30 Dec 2021 21:09:15 +0000 (21:09 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 30 Dec 2021 21:09:15 +0000 (21:09 +0000)
Suggested by: @moisseev
Issue: #4023

src/rspamadm/dkim_keygen.c

index 318cc924d3b29dd8270aac509a548eb4948be112..1bbb71775e892470001586d9e1e7cbe1acd56de4 100644 (file)
@@ -110,7 +110,7 @@ rspamd_dkim_generate_rsa_keypair (const gchar *domain, const gchar *selector,
        g_assert (EVP_PKEY_set1_RSA (pk, r) == 1);
 
        if (priv_fname) {
-               int fd = open (priv_fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
+               int fd = open (priv_fname, O_WRONLY | O_CREAT | O_TRUNC, 0640);
 
                if (fd < 0) {
                        rspamd_fprintf (stderr, "cannot open output file %s: %s\n",