Adding reminder
[squirrelmail.git] / plugins / listcommands / setup.php
index 4a9b73cb14e5c5c5c15de9df4596561e42bc3808..68643796c220519c3e32a6201d8246672f94b4cc 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * setup.php
  *
- * Copyright (c) 1999-2003 The SquirrelMail Project Team
+ * Copyright (c) 1999-2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Implementation of RFC 2369 for SquirrelMail.
@@ -44,11 +44,7 @@ function plugin_listcommands_menu() {
     foreach ($message->rfc822_header->mlist as $cmd => $actions) {
 
        /* I don't know this action... skip it */
-       if ( ( function_exists('array_key_exists') &&       /* PHP >= 4.1 */
-               !array_key_exists($cmd, $fieldsdescr) ) ||
-             ( function_exists('key_exists') && 
-               !key_exists($cmd, $fieldsdescr) )            /* PHP == 4.0.6 */
-        ) {
+       if ( !array_key_exists($cmd, $fieldsdescr) ) {
             continue;
         }
 
@@ -68,6 +64,8 @@ function plugin_listcommands_menu() {
             $output[] = makeComposeLink($url, $fieldsdescr[$cmd]);
 
             if ($cmd == 'post') {
+                if (!isset($mailbox))
+                    $mailbox = 'INBOX';
                $url .= '&passed_id='.$passed_id.
                        '&mailbox='.urlencode($mailbox).
                        (isset($passed_ent_id)?'&passed_ent_id='.$passed_ent_id:'');