guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: services: dovecot: Rename auth-verbose-passwords?.


From: guix-commits
Subject: 01/01: services: dovecot: Rename auth-verbose-passwords?.
Date: Tue, 7 May 2019 15:56:53 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 5b3d3cf71c1947bb43237b28d231d249f9dfbe49
Author: Christopher Baines <address@hidden>
Date:   Thu May 2 20:19:59 2019 +0100

    services: dovecot: Rename auth-verbose-passwords?.
    
    * gnu/services/mail.scm (dovecot-configuration)[auth-verbose-passwords?]:
    Rename to auth-verbose-passwords, and change the type to a string, as this
    parameter can take one of three string values.
    * doc/guix.texi (Dovecot service): Update the corresponding documentation.
---
 doc/guix.texi         | 4 ++--
 gnu/services/mail.scm | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 2515ec1..1caecfc 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -15878,13 +15878,13 @@ failed.
 Defaults to @samp{#f}.
 @end deftypevr
 
address@hidden address@hidden parameter} boolean auth-verbose-passwords?
address@hidden address@hidden parameter} string auth-verbose-passwords
 In case of password mismatches, log the attempted password.  Valid
 values are no, plain and sha1.  sha1 can be useful for detecting brute
 force password attempts vs.  user simply trying the same password over
 and over again.  You can also truncate the value to n chars by appending
 ":n" (e.g.@: sha1:6).
-Defaults to @samp{#f}.
+Defaults to @samp{"no"}.
 @end deftypevr
 
 @deftypevr address@hidden parameter} boolean auth-debug?
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm
index 0dabfed..216b2c8 100644
--- a/gnu/services/mail.scm
+++ b/gnu/services/mail.scm
@@ -806,8 +806,8 @@ standard facilities are supported.")
    "Log unsuccessful authentication attempts and the reasons why they
 failed.")
 
-  (auth-verbose-passwords?
-   (boolean #f)
+  (auth-verbose-passwords
+   (string "no")
    "In case of password mismatches, log the attempted password.  Valid
 values are no, plain and sha1.  sha1 can be useful for detecting brute
 force password attempts vs.  user simply trying the same password over



reply via email to

[Prev in Thread] Current Thread [Next in Thread]