[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42899] [PATCH v5 4/6] services: dovecot: Add 'imap-metadata?' proto
From: |
Alexey Abramov |
Subject: |
[bug#42899] [PATCH v5 4/6] services: dovecot: Add 'imap-metadata?' protocol configuration option. |
Date: |
Tue, 20 Oct 2020 17:06:53 +0200 |
* gnu/services/mail.scm (protocol-configuration): Define the option to be able
to activate the IMAP METADATA commands over the imap protocol.
* doc/guix.texi (Mail Services): Document it.
---
doc/guix.texi | 11 +++++++++++
gnu/services/mail.scm | 8 +++++++-
2 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index d30cd2c86b..d915d004c9 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -18436,6 +18436,17 @@ This is used by imap (for shared users) and lda.
It defaults to @samp{"/var/run/dovecot/auth-userdb"}.
@end deftypevr
+@deftypevr {@code{protocol-configuration} parameter} boolean imap-metadata?
+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.
+
+Defaults to @samp{#f}.
+
+@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 caa8bc5893..0c21da8891 100644
--- a/gnu/services/mail.scm
+++ b/gnu/services/mail.scm
@@ -348,7 +348,13 @@ This is used by imap (for shared users) and lda.")
(mail-max-userip-connections
(non-negative-integer 10)
"Maximum number of IMAP connections allowed for a user from each IP
-address. NOTE: The username is compared case-sensitively."))
+address. NOTE: The username is compared case-sensitively.")
+ (imap-metadata?
+ (boolean #f)
+ "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."))
(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 <=
- [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, 2020/10/20
- [bug#42899] [PATCH v5 1/6] gnu: dovecot: Set moduledir to global directory., Alexey Abramov, 2020/10/20