forked from mirrors/nixpkgs
roundcube: Added new option maxAttachmentSize
to configure the maximum attachment size
The multiplication is used since roundcube uses only 70% of the php configured upload size.
This commit is contained in:
parent
b0d53b7fe5
commit
12e0d726fd
|
@ -95,6 +95,16 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
maxAttachmentSize = mkOption {
|
||||||
|
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"/>.
|
||||||
|
'';
|
||||||
|
apply = configuredMaxAttachmentSize: "${toString (configuredMaxAttachmentSize * 1.3)}M";
|
||||||
|
};
|
||||||
|
|
||||||
extraConfig = mkOption {
|
extraConfig = mkOption {
|
||||||
type = types.lines;
|
type = types.lines;
|
||||||
default = "";
|
default = "";
|
||||||
|
@ -115,7 +125,7 @@ in
|
||||||
$config = array();
|
$config = array();
|
||||||
$config['db_dsnw'] = 'pgsql://${cfg.database.username}${lib.optionalString (!localDB) ":' . $password . '"}@${if localDB then "unix(/run/postgresql)" else cfg.database.host}/${cfg.database.dbname}';
|
$config['db_dsnw'] = 'pgsql://${cfg.database.username}${lib.optionalString (!localDB) ":' . $password . '"}@${if localDB then "unix(/run/postgresql)" else cfg.database.host}/${cfg.database.dbname}';
|
||||||
$config['log_driver'] = 'syslog';
|
$config['log_driver'] = 'syslog';
|
||||||
$config['max_message_size'] = '25M';
|
$config['max_message_size'] = '${cfg.maxAttachmentSize}';
|
||||||
$config['plugins'] = [${concatMapStringsSep "," (p: "'${p}'") cfg.plugins}];
|
$config['plugins'] = [${concatMapStringsSep "," (p: "'${p}'") cfg.plugins}];
|
||||||
$config['des_key'] = file_get_contents('/var/lib/roundcube/des_key');
|
$config['des_key'] = file_get_contents('/var/lib/roundcube/des_key');
|
||||||
$config['mime_types'] = '${pkgs.nginx}/conf/mime.types';
|
$config['mime_types'] = '${pkgs.nginx}/conf/mime.types';
|
||||||
|
@ -172,8 +182,8 @@ in
|
||||||
phpOptions = ''
|
phpOptions = ''
|
||||||
error_log = 'stderr'
|
error_log = 'stderr'
|
||||||
log_errors = on
|
log_errors = on
|
||||||
post_max_size = 25M
|
post_max_size = ${cfg.maxAttachmentSize}
|
||||||
upload_max_filesize = 25M
|
upload_max_filesize = ${cfg.maxAttachmentSize}
|
||||||
'';
|
'';
|
||||||
settings = mapAttrs (name: mkDefault) {
|
settings = mapAttrs (name: mkDefault) {
|
||||||
"listen.owner" = "nginx";
|
"listen.owner" = "nginx";
|
||||||
|
|
Loading…
Reference in a new issue