[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: services: dovecot: Fix passwd and userdb 'args' types.
From: |
Clément Lassieur |
Subject: |
01/01: services: dovecot: Fix passwd and userdb 'args' types. |
Date: |
Sat, 1 Apr 2017 08:39:19 -0400 (EDT) |
snape pushed a commit to branch master
in repository guix.
commit deb3618810b2af48778f24517b6d46a9a673375d
Author: Clément Lassieur <address@hidden>
Date: Thu Mar 2 23:34:13 2017 +0100
services: dovecot: Fix passwd and userdb 'args' types.
* gnu/services/mail.scm (passwd-configuration)[args]
(userdb-configuration)[args]: Change type from 'free-form-args' to
'space-separated-string-list'.
* doc/guix.texi (Mail Services): Document it.
---
doc/guix.texi | 12 ++++++------
gnu/services/mail.scm | 8 ++++----
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 40c2fe0..8da82b4 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -11362,9 +11362,9 @@ The driver that the passdb should use. Valid values
include
Defaults to @samp{"pam"}.
@end deftypevr
address@hidden address@hidden parameter} free-form-args args
-A list of key-value args to the passdb driver.
-Defaults to @samp{()}.
address@hidden address@hidden parameter} space-separated-string-list args
+Space separated list of arguments to the passdb driver.
+Defaults to @samp{""}.
@end deftypevr
@end deftypevr
@@ -11381,9 +11381,9 @@ The driver that the userdb should use. Valid values
include
Defaults to @samp{"passwd"}.
@end deftypevr
address@hidden address@hidden parameter} free-form-args args
-A list of key-value args to the userdb driver.
-Defaults to @samp{()}.
address@hidden address@hidden parameter} space-separated-string-list args
+Space separated list of arguments to the userdb driver.
+Defaults to @samp{""}.
@end deftypevr
@deftypevr address@hidden parameter} free-form-args override-fields
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm
index 05978e0..20043d7 100644
--- a/gnu/services/mail.scm
+++ b/gnu/services/mail.scm
@@ -160,8 +160,8 @@
@samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
@samp{static}.")
(args
- (free-form-args '())
- "A list of key-value args to the passdb driver."))
+ (space-separated-string-list '())
+ "Space separated list of arguments to the passdb driver."))
(define (serialize-passdb-configuration field-name val)
(format #t "passdb {\n")
@@ -178,8 +178,8 @@
"The driver that the userdb should use. Valid values include
@samp{passwd} and @samp{static}.")
(args
- (free-form-args '())
- "A list of key-value args to the userdb driver.")
+ (space-separated-string-list '())
+ "Space separated list of arguments to the userdb driver.")
(override-fields
(free-form-args '())
"Override fields from passwd."))