Browse code

bb11996 - deprecate AllowSupplementaryGroups more gracefully.

Steven Morgan authored on 2017/12/22 07:00:37
Showing 3 changed files
... ...
@@ -10,6 +10,9 @@ submissions from the ClamAV community:
10 10
       The internal library is the default and contains additional
11 11
       integrity checks.
12 12
     - Linking with openssl 1.1.0.
13
+    - Deprecation of the AllowSupplementaryGroups parameter statement
14
+      in clamd, clamav-milter, and freshclam. Use of supplementary
15
+      is now in effect by default.
13 16
     - Numerous code patches, typos, and compiler warning fixes.
14 17
 
15 18
 Additionally, we have introduced important changes and new features in
... ...
@@ -14,6 +14,9 @@ submissions from the ClamAV community:
14 14
       The internal library is the default and contains additional
15 15
       integrity checks.
16 16
     - Linking with openssl 1.1.0.
17
+    - Deprecation of the AllowSupplementaryGroups parameter statement
18
+      in clamd, clamav-milter, and freshclam. Use of supplementary
19
+      is now in effect by default.
17 20
     - Numerous code patches, typos, and compiler warning fixes.
18 21
 
19 22
 Additionally, we have introduced important changes and new features in
... ...
@@ -52,6 +55,7 @@ Marc Deslauriers
52 52
 Mark Allan
53 53
 Andreas Schulze
54 54
 Jonas Zaddach
55
+Georgy Salnikov
55 56
 
56 57
 0.99.2
57 58
 ------
... ...
@@ -504,6 +504,7 @@ const struct clam_option __clam_options[] = {
504 504
     { "ClamukoExcludePath", NULL, 0, CLOPT_TYPE_STRING, NULL, -1, NULL, FLAG_MULTIPLE, OPT_CLAMD | OPT_DEPRECATED, "", "" },
505 505
     { "ClamukoExcludeUID", NULL, 0, CLOPT_TYPE_NUMBER, MATCH_NUMBER, -1, NULL, FLAG_MULTIPLE, OPT_CLAMD | OPT_DEPRECATED, "", "" },
506 506
     { "ClamukoMaxFileSize", NULL, 0, CLOPT_TYPE_SIZE, MATCH_SIZE, 5242880, NULL, 0, OPT_CLAMD | OPT_DEPRECATED, "", "" },
507
+    { "AllowSupplementaryGroups", NULL, 0, CLOPT_TYPE_BOOL, MATCH_BOOL, 0, NULL, 0, OPT_CLAMD | OPT_FRESHCLAM | OPT_MILTER | OPT_DEPRECATED, "Initialize a supplementary group access (the process must be started by root).", "no" },
507 508
 
508 509
     /* Milter specific options */
509 510