[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42899] [PATCH v5 5/6] services: dovecot: Add 'managesieve-notify-ca
From: |
Alexey Abramov |
Subject: |
[bug#42899] [PATCH v5 5/6] services: dovecot: Add 'managesieve-notify-capability' option. |
Date: |
Tue, 20 Oct 2020 17:06:54 +0200 |
* doc/guix.texi (Mail Services): Document it.
* gnu/services/mail.scm (protocol-configuration): Define it.
---
doc/guix.texi | 9 +++++++++
gnu/services/mail.scm | 8 +++++++-
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index d915d004c9..c033868baa 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -18447,6 +18447,15 @@ Defaults to @samp{#f}.
@end deftypevr
+@deftypevr {@code{protocol-configuration} parameter}
space-separated-string-list managesieve-notify-capabilities
+Report notify capabilities by the managesieve service upon a client
+connection. If left unassigned, these will be assigned dynamically
+according to what the Sieve interpreter supports by default (after login
+this may differ depending on the authenticated user).
+
+Defaults to @samp{()}.
+@end deftypevr
+
@deftypevr {@code{protocol-configuration} parameter}
space-separated-string-list mail-plugins
Space separated list of plugins to load.
@end deftypevr
diff --git a/gnu/services/mail.scm b/gnu/services/mail.scm
index 0c21da8891..2066661907 100644
--- a/gnu/services/mail.scm
+++ b/gnu/services/mail.scm
@@ -354,7 +354,13 @@ address. NOTE: The username is compared
case-sensitively.")
"Activate the commands of @code{IMAP METADATA} extension
@uref{https://tools.ietf.org/html/rfc5464, RFC@tie{}5464}. If activated, a
dictionary needs to be configured, via the @code{mail-attribute-dict}
-setting."))
+setting.")
+ (managesieve-notify-capability
+ (space-separated-string-list '())
+ "Report NOTIFY capabilities by the ManageSieve service upon a client
+connection. If left unassigned, these will be assigned dynamically
+according to what the Sieve interpreter supports by default."))
+
(define (serialize-protocol-configuration field-name val)
(format #t "protocol ~a {\n" (protocol-configuration-name val))
--
2.28.0
- [bug#42899] [PATCH v5 0/6] Dovecot improvements, Alexey Abramov, 2020/10/20
- [bug#42899] [PATCH v5 2/6] services: dovecot: Provide plugins through a /gnu/store directory., Alexey Abramov, 2020/10/20
- [bug#42899] [PATCH v5 6/6] services: dovecot: Add 'managesieve-sieve-capability' option., Alexey Abramov, 2020/10/20
- [bug#42899] [PATCH v5 4/6] services: dovecot: Add 'imap-metadata?' protocol configuration option., Alexey Abramov, 2020/10/20
- [bug#42899] [PATCH v5 3/6] services: dovecot: Add 'mail-attribute-dict' configuration option., Alexey Abramov, 2020/10/20
- [bug#42899] [PATCH v5 5/6] services: dovecot: Add 'managesieve-notify-capability' option.,
Alexey Abramov <=
- [bug#42899] [PATCH v5 1/6] gnu: dovecot: Set moduledir to global directory., Alexey Abramov, 2020/10/20