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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
Description: Patch to fix a syntax error in Perl code in the PHP script eval()s
Author: Ron Guerin <ron@vnetworx.net>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1118969
Last-Update: 2025-11-24
--- a/contrib/web/php-admin/conf/tunables.pl
+++ b/contrib/web/php-admin/conf/tunables.pl
@@ -46,7 +46,7 @@
mlmmj_boolean("modonlypost",
"Moderators only post",
"When this file is present, only people listed in listdir/control/moderators ".
- "are allowed to post to it. The check is made against the "From:" header.");
+ "are allowed to post to it. The check is made against the \"From:\" header.");
mlmmj_boolean("modnonsubposts",
"Moderate non-allowed posts",
@@ -72,13 +72,13 @@
"These headers are added to every mail coming through. This is ".
"the place you want to add Reply-To: header in case you want ".
"such. ".
- "If a header should not occur twice in the mail it should be listed in the 'Delete headers' box too.");
+ "If a header should not occur twice in the mail it should be listed in the \"Delete headers\" box too.");
mlmmj_list("delheaders",
"Delete headers",
"In this file is specified *ONE* headertoken to match pr. line. ".
"If the file consists of: Received: Message-ID: Then all occurences of these headers in incoming list mail will be deleted. ".
- "\"From \" and \"Return-Path:\" are deleted no matter what.");
+ "\"From:\" and \"Return-Path:\" are deleted no matter what.");
mlmmj_list("access",
"Access",
@@ -104,7 +104,7 @@
mlmmj_string("delimiter",
"Delimiter",
"This specifies what to use as recipient delimiter for the list.".
- "Default is '+'.");
+ "Default is \"+\".");
mlmmj_boolean("notifysub",
"Notify subscribers",
@@ -149,7 +149,7 @@
mlmmj_string("verp",
"VERP",
"Enable VERP support. Anything added in this variable will be appended the ".
- "MAIL FROM: line. If 'postfix' is put in the file, it'll make postfix use ".
+ "MAIL FROM: line. If \"postfix\" is put in the file, it'll make Postfix use ".
"VERP by adding XVERP=-= to the MAIL FROM: line.");
mlmmj_string("maxverprecips",
@@ -159,28 +159,28 @@
mlmmj_boolean("notoccdenymails",
"No To: Cc: deny mails",
"This switch turns off whether mlmmj sends out notification about postings ".
- "being denied due to the listaddress not being in To: or Cc: (see 'tocc').");
+ "being denied due to the listaddress not being in To: or Cc: (see \"tocc\").");
mlmmj_boolean("noaccessdenymails",
"No access deny mails",
"This switch turns off whether mlmmj sends out notification about postings ".
- "being rejected due to an access rule (see 'access').");
+ "being rejected due to an access rule (see \"access\").");
mlmmj_boolean("nosubonlydenymails",
"No subscribers only deny mails",
"This switch turns off whether mlmmj sends out notification about postings ".
- "being rejected due to a subscribers only posting list (see 'subonlypost').");
+ "being rejected due to a subscribers only posting list (see \"subonlypost\").");
mlmmj_boolean("nomodonlydenymails",
"No moderators only deny mails",
"This switch turns off whether mlmmj sends out notification about postings ".
- "being rejected due to a moderators only posting list (see 'modonlypost').");
+ "being rejected due to a moderators only posting list (see \"modonlypost\").");
mlmmj_boolean("nosubmodmails",
"No subscription moderated mails",
"This switch turns off whether mlmmj sends out notification about ".
"subscription being moderated to the person requesting subscription".
- "(see 'submod').");
+ "(see \"submod\").");
mlmmj_boolean("nodigesttext",
"No digest text summary",
@@ -210,13 +210,13 @@
mlmmj_boolean("nolistsubsemail",
"No list subscribers email",
- "If this is set, the LISTNAME+list\@ functionality for requesting an ".
+ "If this is set, the LISTNAME+list@ functionality for requesting an ".
"email with the subscribers for owner is disabled.");
mlmmj_string("staticbounceaddr",
"Static bounce address",
- "If this is set to something\@example.org, the bounce address (Return-Path:) ".
- "will be fixed to something+listname-bounces-and-so-on\@example.org ".
+ "If this is set to something@example.org, the bounce address (Return-Path:) ".
+ "will be fixed to something+listname-bounces-and-so-on@example.org ".
"in case you need to disable automatic bounce handling.");
mlmmj_boolean("ifmodsendonlymodmoderate",
|