diff options
author | Clément Lassieur <clement@lassieur.org> | 2017-02-26 19:54:52 +0100 |
---|---|---|
committer | Clément Lassieur <clement@lassieur.org> | 2017-03-12 01:30:23 +0100 |
commit | eba560765a5afccbc5d3b64df410d89b1f79a18e (patch) | |
tree | ae682196f60f536bdc4bc7c2decc684530b46d98 /gnu/services | |
parent | a5935d1946c42a91218c20dba5e1c4cdc396ced6 (diff) | |
download | guix-eba560765a5afccbc5d3b64df410d89b1f79a18e.tar.gz guix-eba560765a5afccbc5d3b64df410d89b1f79a18e.zip |
services: dovecot: Fix unix_listeners and fifo_listeners path types.
* gnu/services/mail.scm (unix-listener-configuration)[path]
(fifo-listener-configuration)[path]: Change type from 'file-name' to 'string'.
* doc/guix.texi (Mail Services): Document it.
Signed-off-by: Clément Lassieur <clement@lassieur.org>
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/mail.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm index b211ab61a5..dbc5de9e62 100644 --- a/gnu/services/mail.scm +++ b/gnu/services/mail.scm @@ -165,8 +165,9 @@ (define-configuration unix-listener-configuration (path - (file-name (configuration-missing-field 'unix-listener 'path)) - "The file name on which to listen.") + (string (configuration-missing-field 'unix-listener 'path)) + "Path to the file, relative to @code{base-dir} field. This is also used as +the section name.") (mode (string "0600") "The access mode for the socket.") @@ -184,8 +185,9 @@ (define-configuration fifo-listener-configuration (path - (file-name (configuration-missing-field 'fifo-listener 'path)) - "The file name on which to listen.") + (string (configuration-missing-field 'fifo-listener 'path)) + "Path to the file, relative to @code{base-dir} field. This is also used as +the section name.") (mode (string "0600") "The access mode for the socket.") |