[PATCH] services: dovecot: Fix passwd and userdb 'args' types.

  • Done
  • quality assurance status badge
Details
One participant
  • Clément Lassieur
Owner
unassigned
Submitted by
Clément Lassieur
Severity
normal

Debbugs page

C
C
Clément Lassieur wrote on 15 Mar 2017 17:46
(address . guix-patches@gnu.org)
20170316004631.25613-2-clement@lassieur.org
* 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.

with a string that is not a list of key-value pairs.

---
doc/guix.texi | 12 ++++++------
gnu/services/mail.scm | 8 ++++----
2 files changed, 10 insertions(+), 10 deletions(-)

Toggle diff (58 lines)
diff --git a/doc/guix.texi b/doc/guix.texi
index 78bf03de9..a0345f6f1 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -11145,9 +11145,9 @@ The driver that the passdb should use. Valid values include
Defaults to @samp{"pam"}.
@end deftypevr
-@deftypevr {@code{passdb-configuration} parameter} free-form-args args
-A list of key-value args to the passdb driver.
-Defaults to @samp{()}.
+@deftypevr {@code{passdb-configuration} parameter} space-separated-string-list args
+Space separated list of arguments to the passdb driver.
+Defaults to @samp{""}.
@end deftypevr
@end deftypevr
@@ -11164,9 +11164,9 @@ The driver that the userdb should use. Valid values include
Defaults to @samp{"passwd"}.
@end deftypevr
-@deftypevr {@code{userdb-configuration} parameter} free-form-args args
-A list of key-value args to the userdb driver.
-Defaults to @samp{()}.
+@deftypevr {@code{userdb-configuration} parameter} space-separated-string-list args
+Space separated list of arguments to the userdb driver.
+Defaults to @samp{""}.
@end deftypevr
@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm
index 05978e006..20043d751 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."))
--
2.12.0
C
C
Clément Lassieur wrote on 16 Mar 2017 02:39
(address . 26117@debbugs.gnu.org)
874lytsgqb.fsf@lassieur.org
Clément Lassieur <clement@lassieur.org> writes:

Toggle quote (8 lines)
> * 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.
>
> See http://wiki2.dovecot.org/AuthDatabase/PasswdFile#Examples for an example
> with a string that is not a list of key-value pairs.

Here too I got mixed up about git send-email.
C
C
Clément Lassieur wrote on 16 Mar 2017 02:43
[PATCH] services: dovecot: Fix passwd and userdb 'args' types.
(address . 26117@debbugs.gnu.org)
20170316094332.11600-1-clement@lassieur.org
* 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(-)

Toggle diff (58 lines)
diff --git a/doc/guix.texi b/doc/guix.texi
index 78bf03de9..a0345f6f1 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -11145,9 +11145,9 @@ The driver that the passdb should use. Valid values include
Defaults to @samp{"pam"}.
@end deftypevr
-@deftypevr {@code{passdb-configuration} parameter} free-form-args args
-A list of key-value args to the passdb driver.
-Defaults to @samp{()}.
+@deftypevr {@code{passdb-configuration} parameter} space-separated-string-list args
+Space separated list of arguments to the passdb driver.
+Defaults to @samp{""}.
@end deftypevr
@end deftypevr
@@ -11164,9 +11164,9 @@ The driver that the userdb should use. Valid values include
Defaults to @samp{"passwd"}.
@end deftypevr
-@deftypevr {@code{userdb-configuration} parameter} free-form-args args
-A list of key-value args to the userdb driver.
-Defaults to @samp{()}.
+@deftypevr {@code{userdb-configuration} parameter} space-separated-string-list args
+Space separated list of arguments to the userdb driver.
+Defaults to @samp{""}.
@end deftypevr
@deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm
index 05978e006..20043d751 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."))
--
2.12.0
C
C
Clément Lassieur wrote on 1 Apr 2017 05:41
(address . 26117@debbugs.gnu.org)
877f3447wd.fsf@lassieur.org
Clément Lassieur <clement@lassieur.org> writes:

Toggle quote (9 lines)
> * 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(-)

Pushed.
C
C
Clément Lassieur wrote on 1 Apr 2017 05:41
control message for bug #26117
(address . control@debbugs.gnu.org)
8760io47w5.fsf@lassieur.org
tags 26117 fixed
close 26117
?
Your comment

This issue is archived.

To comment on this conversation send an email to 26117@patchwise.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 26117
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch