Somehow went missing options.php and config file, minor adjustments to template outpu...
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 23 Jan 2007 03:37:36 +0000 (03:37 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 23 Jan 2007 03:37:36 +0000 (03:37 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12189 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/listcommands/config_sample.php [new file with mode: 0644]
plugins/listcommands/functions.php
plugins/listcommands/options.php [new file with mode: 0644]
plugins/listcommands/templates/default/non_rfc_lists.tpl

diff --git a/plugins/listcommands/config_sample.php b/plugins/listcommands/config_sample.php
new file mode 100644 (file)
index 0000000..590b3e4
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+/**
+ * SquirrelMail List Commands Plugin
+ * Configuration File (config_sample.php, to use, please copy to config.php)
+ *
+ * @copyright &copy; 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage listcommands
+ */
+
+
+// Set this to 1 if users should be allowed to add a list of
+// mailing list addresses that don't follow RFC 2369, but when
+// replying to should also show "reply to list" and "post to list"
+// links... set to 0 (zero) otherwise.
+//
+$listcommands_allow_non_rfc_list_management = 0;
+
+
index 8ca0bf51998e7d6f4d834de007fc7a6ad52f0ec0..66a4f99bf93b83d98c5eb7ff5a4b03cc8a51a7fe 100644 (file)
@@ -130,7 +130,7 @@ function plugin_listcommands_menu_do() {
         if (!in_array('post', array_keys($links))) {
 
             foreach ($non_rfc_lists as $non_rfc_list) {
-                if (preg_match('/(^|,|\s)' . preg_quote($non_rfc_list) . '($|,|\s)/', $recipients)) {
+                if (preg_match('/(^|,|<|\s)' . preg_quote($non_rfc_list) . '($|,|>|\s)/', $recipients)) {
                     $url = 'src/compose.php?'
                          . (isset($startMessage)?'startMessage='.$startMessage.'&amp;':'')
                          . 'send_to=' . str_replace('?','&amp;', $non_rfc_list);
diff --git a/plugins/listcommands/options.php b/plugins/listcommands/options.php
new file mode 100644 (file)
index 0000000..22e998e
--- /dev/null
@@ -0,0 +1,78 @@
+<?php
+
+/**
+ * SquirrelMail List Commands Plugin
+ * options.php
+ *
+ * Shows options page for managing non-RFC-compliant list subscriptions.
+ *
+ * @copyright &copy; 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage listcommands
+ */
+
+
+include_once('../../include/init.php');
+include_once(SM_PATH . 'plugins/listcommands/functions.php');
+
+global $listcommands_allow_non_rfc_list_management, $data_dir, $username;
+
+// only allow management of non-RFC lists if admin deems necessary
+//
+@include_once(SM_PATH . 'plugins/listcommands/config.php');
+if (!$listcommands_allow_non_rfc_list_management)
+    return;
+
+
+$lists = get_non_rfc_lists();
+
+
+
+// remove list?
+//
+if (sqGetGlobalVar('deletelist', $deletelist, SQ_FORM) 
+ && is_array($deletelist) && !empty($deletelist)) {
+
+   // interface currently does not support multiple deletions at once
+   // but we'll support it here anyway -- the index values of this
+   // array are the only thing we care about and need to be the 
+   // index number of the list to be deleted 
+   //
+   foreach (array_keys($deletelist) as $index)
+      unset($lists[$index]);
+
+    sort($lists);
+    $temp_lists = array();
+    foreach ($lists as $index => $list_addr)
+        $temp_lists[] = $index . '_' . $list_addr;
+    setPref($data_dir, $username, 'non_rfc_lists', implode(':', $temp_lists));
+
+}
+
+
+
+// add list?
+//
+if (sqGetGlobalVar('addlist', $ignore, SQ_FORM) 
+ && sqGetGlobalVar('newlist', $newlist, SQ_FORM)) {
+
+    $lists[] = $newlist;
+
+    sort($lists);
+    $temp_lists = array();
+    foreach ($lists as $index => $list_addr)
+        $temp_lists[] = $index . '_' . $list_addr;
+    setPref($data_dir, $username, 'non_rfc_lists', implode(':', $temp_lists));
+
+}
+
+
+
+displayPageHeader($color, 'None');
+
+$oTemplate->assign('lists', $lists);
+$oTemplate->display('plugins/listcommands/non_rfc_lists.tpl');
+
+
index 04202fd1e27e94c1b21ff15b2b340a2a2de3a2c1..a3bc876cae37d6fcefb21f8cb732d2c851c3f591 100644 (file)
 extract($t);
 
 
-?><html><body><form method="post" action="">
-<table width="95%" align="center" border="0" cellpadding="2" cellspacing="0">
+?><form method="post" action="">
+<div id="optionGroups">
+<table cellspacing="0">
   <tr>
-    <td colspan="3" align="center" bgcolor="<?php echo  $color[0] ?>">
-      <b><?php echo _("Options") . " - " . _("Mailing Lists"); ?></b>
+    <td class="header1" colspan="2">
+      <?php echo _("Options") . " - " . _("Mailing Lists"); ?>
     </td>
   </tr>
   <tr>
-    <td colspan="3">&nbsp;</td>
+    <td colspan="2">Manage the (non-RFC-compliant) mailing lists that you are subscribed to for the purpose of providing one-click list replies when responding to list messages.  You only need to enter any lists you are subscribed to that do not already comply with RFC 2369.<br /><br />When entering a new list, input the full email address for the address from which list postings are delivered.<br /><br /></td>
   </tr>
   <tr>
-    <td colspan="3">Manage the (non-RFC-compliant) mailing lists that you are subscribed to for the purpose of providing one-click list replies when responding to list messages.  You only need to enter any lists you are subscribed to that do not already comply with RFC 2369.<br /><br />When entering a new list, input the full email address for the main list.</td>
-  </tr>
-  <tr>
-    <td colspan="3">&nbsp;</td>
-  </tr>
-</table>
-<table width="80%" align="center" border="0" cellpadding="2" cellspacing="0">
-  <tr>
-    <td>
+    <td align="right">
       <?php echo _("Enter new mailing list"); ?>:
     </td>
-    <td align="right">
+    <td align="left">
       <input type="text" name="newlist" size="30" />
-    </td>
-    <td>
       <input type="submit" name="addlist" value="<? echo _("Add"); ?>" size="30" />
     </td>
   </tr>
   <tr>
-    <td colspan="3">&nbsp;</td>
+    <td colspan="2">&nbsp;</td>
   </tr>
   <tr>
-    <td valign="top"><? echo _("Existing mailing lists"); ?>:</td>
-    <td align="center" colspan="2">
-      <table cellpadding="2">
+    <td align="right" valign="top"><? echo _("Existing mailing lists"); ?>:</td>
+    <td align="center">
+      <table border="0" cellpadding="0" cellspacing="0">
 <?php
     foreach($lists as $index => $list) {
         echo '<tr><td>' . $list . '</td><td><input type="submit" name="deletelist[' . $index . ']" value="' . _("Delete") . '" /></td></tr>';
@@ -69,6 +60,7 @@ extract($t);
     </td>
   </tr>
 </table>
+</div>
 </form>
 </body>
 </html>