Dovecot <namespace-configuration> has two ‘locati on’ fields
(address . bug-guix@gnu.org)
I just noticed this compiler warning:
Toggle snippet (4 lines)
gnu/services/mail.scm:431:0: warning: shadows previous definition of `%namespace-configuration-location-procedure' at gnu/services/mail.scm:431:0
<unknown-location>: warning: shadows previous definition of `namespace-configuration-location' at <unknown-location>
I believe this comes from the fact that ‘define-configuration’
automatically introduces a ‘location’ field (for the source code
location of <namespace-configuration> instantiations), which clashes
with this one:
Toggle snippet (6 lines)
(location
(string "")
"Physical location of the mailbox. This is in same format as
mail_location, which is also the default for it.")
I think this was revealed by the fix in commit
dd0826fbf345dfe7289cf943ed2d29edc51d543f.
Probably the only sane way to address it is by renaming the field above.
Thoughts?
Ludo’.