summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Attachment.pm
blob: daa844ba59ed4a80f13ffdc5d68fcec2d335a6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

package Bugzilla::Config::Attachment;

use 5.14.0;
use strict;
use warnings;

use Bugzilla::Config::Common;

our $sortkey = 400;

sub get_param_list {
  my $class = shift;
  my @param_list = (
  {
   name => 'allow_attachment_display',
   type => 'b',
   default => 0
  },

  {
   name => 'attachment_base',
   type => 't',
   default => '',
   checker => \&check_urlbase
  },

  {
  name => 'allow_attachment_deletion',
  type => 'b',
  default => 0
  },

  {
  name => 'xsendfile_header',
  type => 's',
  choices => ['off', 'X-Sendfile', 'X-Accel-Redirect', 'X-LIGHTTPD-send-file'],
  default => 'off',
  checker => \&check_multi
  },

  {
   name => 'maxattachmentsize',
   type => 't',
   default => '1000',
   checker => \&check_maxattachmentsize
  },

  # The maximum size (in bytes) for patches and non-patch attachments.
  # The default limit is 1000KB, which is 24KB less than mysql's default
  # maximum packet size (which determines how much data can be sent in a
  # single mysql packet and thus how much data can be inserted into the
  # database) to provide breathing space for the data in other fields of
  # the attachment record as well as any mysql packet overhead (I don't
  # know of any, but I suspect there may be some.)

  {
   name => 'maxlocalattachment',
   type => 't',
   default => '0',
   checker => \&check_numeric
  } );
  return @param_list;
}

1;