3adccaf27625 — Bill Welliver 2 years ago
make the plugin name nicer
M plugins/archive/archive.pike +4 -3
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "archive support";
+constant name = "Archive support";
 constant description = "support for archived article storage";
 
 int _enabled = 1;

          
@@ 12,11 12,12 @@ mapping query_event_callers()
   return ([ "preDelivery" : archive_message ]);
 }
 
+// these settings are not yet enabled; configuration is global for the entire list server
 mapping query_list_settings()
 {
   return ([
-           "full_text_enabled": (["type": SpeedyDelivery.BOOLEAN, "value": 1, "name": "Enable Full Text"]),
-           "full_text_authkey": (["type": SpeedyDelivery.STRING, "value": "", "name": "Full Text Auth Key"])
+           "full_text_enabled": (["type": Fins.BOOLEAN, "value": 1, "name": "Enable Full Text"]),
+           "full_text_authkey": (["type": Fins.STRING, "value": "", "name": "Full Text Auth Key"])
          ]);
 }
 

          
M plugins/bounces/bounces.pike +1 -1
@@ 2,7 2,7 @@ inherit SpeedyDelivery.Plugin;
 
 import Tools.Logging;
 
-constant name = "bounce support";
+constant name = "Bounce support";
 constant description = "support for handling bounces";
 
 int _enabled = 1;

          
M plugins/digester/digester.pike +1 -1
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "digest delivery support";
+constant name = "Digest delivery support";
 constant description = "support for digest delivery";
 
 int _enabled = 1;

          
M plugins/list_subject/list_subject.pike +1 -1
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "list name in subject";
+constant name = "List name in subject";
 constant description = "inserts the list name into the subject of a list";
 constant list_enableable = 1;
 

          
M plugins/moderate/moderate.pike +1 -1
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "moderation support";
+constant name = "Moderation support";
 constant description = "support for moderating list activity";
 
 int _enabled = 1;

          
M plugins/owner/owner.pike +1 -1
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "owner support";
+constant name = "Owner support";
 constant description = "list owner email address";
 
 int _enabled = 1;

          
M plugins/subscribe/subscribe.pike +1 -1
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "subscribe support";
+constant name = "Subscribe support";
 constant description = "support for subscription via email";
 
 int _enabled = 1;

          
M plugins/unsubscribe/unsubscribe.pike +1 -1
@@ 1,7 1,7 @@ 
 inherit SpeedyDelivery.Plugin;
 import Tools.Logging;
 
-constant name = "unsubscribe support";
+constant name = "Unsubscribe support";
 constant description = "support for unsubscription via email";
 
 int _enabled = 1;