From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Cl=C3=A9ment=20Lassieur?= Subject: [PATCH] services: dovecot: Fix unix_listeners and fifo_listeners path types. Date: Sun, 26 Feb 2017 20:42:03 +0100 Message-ID: <20170226194203.25746-1-clement@lassieur.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43215) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ci4iN-0002lB-75 for guix-devel@gnu.org; Sun, 26 Feb 2017 14:42:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ci4iI-0000s5-Aa for guix-devel@gnu.org; Sun, 26 Feb 2017 14:42:39 -0500 Received: from mail.lassieur.org ([83.152.10.219]:35580) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ci4iI-0000ra-0X for guix-devel@gnu.org; Sun, 26 Feb 2017 14:42:34 -0500 Received: from localhost.localdomain (unknown [192.168.0.254]) by mail.lassieur.org (Postfix) with ESMTPSA id B5BA1640107 for ; Sun, 26 Feb 2017 20:42:28 +0100 (CET) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * 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. --- doc/guix.texi | 8 ++++---- gnu/services/mail.scm | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/guix.texi b/doc/guix.texi index be11096a4..979820300 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -10750,8 +10750,8 @@ Defaults to @samp{()}. Available @code{unix-listener-configuration} fields are: -@deftypevr {@code{unix-listener-configuration} parameter} file-name path -The file name on which to listen. +@deftypevr {@code{unix-listener-configuration} parameter} string path +The file name on which to listen. This is also used as the section name. @end deftypevr @deftypevr {@code{unix-listener-configuration} parameter} string mode @@ -10772,8 +10772,8 @@ Defaults to @samp{""}. Available @code{fifo-listener-configuration} fields are: -@deftypevr {@code{fifo-listener-configuration} parameter} file-name path -The file name on which to listen. +@deftypevr {@code{fifo-listener-configuration} parameter} string path +The file name on which to listen. This is also used as the section name. @end deftypevr @deftypevr {@code{fifo-listener-configuration} parameter} string mode diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm index 30b1672d3..31191a962 100644 --- a/gnu/services/mail.scm +++ b/gnu/services/mail.scm @@ -158,8 +158,8 @@ (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)) + "The file name on which to listen. This is also used as the section name.") (mode (string "0600") "The access mode for the socket.") @@ -177,8 +177,8 @@ (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)) + "The file name on which to listen. This is also used as the section name.") (mode (string "0600") "The access mode for the socket.") -- 2.12.0