unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#25802: Unable to run dovecot w/ non-opaque configuration
@ 2017-02-19 22:20 Bake Timmons
  2017-04-22 23:37 ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Bake Timmons @ 2017-02-19 22:20 UTC (permalink / raw)
  To: 25802

Trying to reconfigure my system running guix 0.12.0 for dovecot with
the default configuration object created by '(dovecot-configuration)'
results in:

guix system: error: exception thrown: #<condition %compound [message: "Invalid value for field path: \"lmtp\""] 4a6a140>

Adding a services list to the above works around the above error and
allows 'guix system reconfigure' to complete successfully.  However,
the generated dovecot.conf is rejected by doveconf:

doveconf: Error in configuration file /gnu/store...dove.cot.conf line 1: Expecting '{'

From my limited acquaintance with dovecot, the guix-generated syntax of, say,
ImapMaxLineLength 64000

disagrees with what I gather to be the normal dovecot.conf syntax of
imap_max_line_length = 64000

Thanks for your consideration!

Bake
-- 
  Bonard B. Timmons III
  b3timmons@fastmail.fm

-- 
http://www.fastmail.com - Access your email from home and the web

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#25802: Unable to run dovecot w/ non-opaque configuration
  2017-02-19 22:20 bug#25802: Unable to run dovecot w/ non-opaque configuration Bake Timmons
@ 2017-04-22 23:37 ` Ludovic Courtès
  2017-04-22 23:50   ` Clément Lassieur
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2017-04-22 23:37 UTC (permalink / raw)
  To: Bake Timmons; +Cc: Andy Wingo, 25802, clement

Hi Bake,

Bake Timmons <b3timmons@speedymail.org> skribis:

> Trying to reconfigure my system running guix 0.12.0 for dovecot with
> the default configuration object created by '(dovecot-configuration)'
> results in:
>
> guix system: error: exception thrown: #<condition %compound [message: "Invalid value for field path: \"lmtp\""] 4a6a140>
>
> Adding a services list to the above works around the above error and
> allows 'guix system reconfigure' to complete successfully.  However,
> the generated dovecot.conf is rejected by doveconf:
>
> doveconf: Error in configuration file /gnu/store...dove.cot.conf line 1: Expecting '{'
>
>From my limited acquaintance with dovecot, the guix-generated syntax of, say,
> ImapMaxLineLength 64000
>
> disagrees with what I gather to be the normal dovecot.conf syntax of
> imap_max_line_length = 64000

Clément, Andy: WDYT?  :-)

I suspect commit 56aef188a2a014e254d3c93c8a79cd1fb5a1ece6 by Clément
might have fixed the syntax issue reported here.

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#25802: Unable to run dovecot w/ non-opaque configuration
  2017-04-22 23:37 ` Ludovic Courtès
@ 2017-04-22 23:50   ` Clément Lassieur
  2017-04-23  0:01     ` Clément Lassieur
  0 siblings, 1 reply; 5+ messages in thread
From: Clément Lassieur @ 2017-04-22 23:50 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Andy Wingo, Bake Timmons, 25802-done

Ludovic Courtès <ludo@gnu.org> writes:

> Hi Bake,
>
> Bake Timmons <b3timmons@speedymail.org> skribis:
>
>> Trying to reconfigure my system running guix 0.12.0 for dovecot with
>> the default configuration object created by '(dovecot-configuration)'
>> results in:
>>
>> guix system: error: exception thrown: #<condition %compound [message: "Invalid value for field path: \"lmtp\""] 4a6a140>
>>
>> Adding a services list to the above works around the above error and
>> allows 'guix system reconfigure' to complete successfully.  However,
>> the generated dovecot.conf is rejected by doveconf:
>>
>> doveconf: Error in configuration file /gnu/store...dove.cot.conf line 1: Expecting '{'
>>
>>From my limited acquaintance with dovecot, the guix-generated syntax of, say,
>> ImapMaxLineLength 64000
>>
>> disagrees with what I gather to be the normal dovecot.conf syntax of
>> imap_max_line_length = 64000
>
> Clément, Andy: WDYT?  :-)
>
> I suspect commit 56aef188a2a014e254d3c93c8a79cd1fb5a1ece6 by Clément
> might have fixed the syntax issue reported here.

Indeed this has been fixed, I'm closing the bug.  Bake, if you still
reproduce after making sure you're up-to-date, do not hesitate to
re-open. :)

Clément

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#25802: Unable to run dovecot w/ non-opaque configuration
  2017-04-22 23:50   ` Clément Lassieur
@ 2017-04-23  0:01     ` Clément Lassieur
  2017-04-23 13:45       ` Bake Timmons
  0 siblings, 1 reply; 5+ messages in thread
From: Clément Lassieur @ 2017-04-23  0:01 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Andy Wingo, Bake Timmons, 25802-done

Clément Lassieur <clement@lassieur.org> writes:

> Ludovic Courtès <ludo@gnu.org> writes:
>
>> Hi Bake,
>>
>> Bake Timmons <b3timmons@speedymail.org> skribis:
>>
>>> Trying to reconfigure my system running guix 0.12.0 for dovecot with
>>> the default configuration object created by '(dovecot-configuration)'
>>> results in:
>>>
>>> guix system: error: exception thrown: #<condition %compound [message: "Invalid value for field path: \"lmtp\""] 4a6a140>
>>>
>>> Adding a services list to the above works around the above error and
>>> allows 'guix system reconfigure' to complete successfully.  However,
>>> the generated dovecot.conf is rejected by doveconf:
>>>
>>> doveconf: Error in configuration file /gnu/store...dove.cot.conf line 1: Expecting '{'
>>>
>>>From my limited acquaintance with dovecot, the guix-generated syntax of, say,
>>> ImapMaxLineLength 64000
>>>
>>> disagrees with what I gather to be the normal dovecot.conf syntax of
>>> imap_max_line_length = 64000
>>
>> Clément, Andy: WDYT?  :-)
>>
>> I suspect commit 56aef188a2a014e254d3c93c8a79cd1fb5a1ece6 by Clément
>> might have fixed the syntax issue reported here.
>
> Indeed this has been fixed, I'm closing the bug.  Bake, if you still
> reproduce after making sure you're up-to-date, do not hesitate to
> re-open. :)

Actually, there were two bugs.  The "lmtp" one has been fixed by commit
eba560765a5afccbc5d3b64df410d89b1f79a18e.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#25802: Unable to run dovecot w/ non-opaque configuration
  2017-04-23  0:01     ` Clément Lassieur
@ 2017-04-23 13:45       ` Bake Timmons
  0 siblings, 0 replies; 5+ messages in thread
From: Bake Timmons @ 2017-04-23 13:45 UTC (permalink / raw)
  To: Clment Lassieur, Ludovic Courts; +Cc: 25802-done

On Sat, Apr 22, 2017, at 08:01 PM, Clment Lassieur wrote:
> Clment Lassieur <clement@lassieur.org> writes:
> 
> > Ludovic Courts <ludo@gnu.org> writes:
> >
> >> Hi Bake,
...
> >> I suspect commit 56aef188a2a014e254d3c93c8a79cd1fb5a1ece6 by Clment
> >> might have fixed the syntax issue reported here.
> >
> > Indeed this has been fixed, I'm closing the bug.  Bake, if you still
> > reproduce after making sure you're up-to-date, do not hesitate to
> > re-open. :)
> 
> Actually, there were two bugs.  The "lmtp" one has been fixed by commit
> eba560765a5afccbc5d3b64df410d89b1f79a18e.
> 

Thanks everyone for your work on this!

Bake
-- 
  Bonard B. Timmons III
  b3timmons@fastmail.fm

-- 
http://www.fastmail.com - Send your email first class

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-04-23 13:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-19 22:20 bug#25802: Unable to run dovecot w/ non-opaque configuration Bake Timmons
2017-04-22 23:37 ` Ludovic Courtès
2017-04-22 23:50   ` Clément Lassieur
2017-04-23  0:01     ` Clément Lassieur
2017-04-23 13:45       ` Bake Timmons

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).