adding error checking in deliver_sendmail class.
[squirrelmail.git] / plugins / info / options.php
index 6a8db4ae04191e8fcfaee769d0ee43e3f5d5f902..fcd0257120c90e3c040f88e7e0fb821ae995ac94 100644 (file)
@@ -1,13 +1,14 @@
 <?php
+
 /**
  * options page for IMAP info plugin
  *
  * This is where it all happens :)
  *
- * @copyright (c) 1999-2005 The SquirrelMail Project Team
+ * @author Jason Munro <jason at stdbev.com>
+ * @copyright &copy; 1999-2005 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
- * @author Jason Munro jason@stdbev.com
  * @package plugins
  * @subpackage info
  */
@@ -33,9 +34,8 @@ $mailbox = 'INBOX';
  * prevent use of plugin if it is not enabled
  */
 if (! is_plugin_enabled('info')) {
-    echo '<p align="center"><big>'.
-         _("Plugin is disabled.").
-         '</big></p></body></html>';
+    error_box(_("Plugin is disabled."),$color);
+    echo '</body></html>';
     exit;
 }
 
@@ -166,20 +166,21 @@ if ($submit == 'submit') {
         }
     }
     for ($i=0;$i<count($tests);$i++) {
-        $response = imap_test($imap_stream, $type[$tests[$i]]);
         echo '<center><table width="95%" border="0" bgcolor="'.$color[4]."\">\n".
              '<tr><td><b>'.$tests[$i]."</b></td></tr>\n".
              '<tr><td><small><b><font color="'.$color[7].'">'.
-             _("Request:")."</font></b></small></td></tr>\n".
-             '<tr><td><small><b><font color="'.$color[7].'">'.
+            _("Request:")."</font></b></small></td></tr>\n";
+        // imap_test function outputs imap command
+        $response = imap_test($imap_stream, $type[$tests[$i]]);
+        echo '<tr><td><small><b><font color="'.$color[7].'">'.
              _("Response:")."</font></b></small></td></tr>\n".
              '<tr><td>';
         print_response($response);
         echo "</td></tr></table></center><br />\n";
     }
 }
-    echo '</td></tr></table></center>';
-    sqimap_logout($imap_stream);
+echo '</td></tr></table></center>';
+sqimap_logout($imap_stream);
 
 /**
  * Optional hook in info plugin