nixos/manual: fix build

Option names must be `opt-<full-option-name>` in docbook XML.
This commit is contained in:
Maximilian Bosch 2020-07-08 11:09:01 +02:00
parent 12e0d726fd
commit 5bc22adb5a
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -99,8 +99,10 @@ in
type = types.int;
default = 18;
description = ''
The maximum attachment size in MB. Note: Since roundcube only uses 70% of max upload values configured in php
30% is added to <xref linkend="maxAttachmentSize"/>.
The maximum attachment size in MB.
Note: Since roundcube only uses 70% of max upload values configured in php
30% is added automatically to <xref linkend="opt-services.roundcube.maxAttachmentSize"/>.
'';
apply = configuredMaxAttachmentSize: "${toString (configuredMaxAttachmentSize * 1.3)}M";
};