diff options
Diffstat (limited to 'apps/admin/modules/server/templates/imapSuccess.php')
-rw-r--r-- | apps/admin/modules/server/templates/imapSuccess.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/apps/admin/modules/server/templates/imapSuccess.php b/apps/admin/modules/server/templates/imapSuccess.php new file mode 100644 index 0000000..57569ad --- /dev/null +++ b/apps/admin/modules/server/templates/imapSuccess.php @@ -0,0 +1,57 @@ + <div id="context"> + <?php echo use_helper("Asset", "Form") ?> + <h1>IMAP Server Information</h1> + + <hr size="1" /> + + <table> + <tr> + <th colspan="2" align="left">Connection:</th> + </tr> + <tr> + <td>Host:</td> + <td><?php echo $serverinfo->getHost() ?></td> + </tr> + <tr> + <td>Port:</td> + <td><?php echo $serverinfo->getPort() ?></td> + </tr> + <tr> + <th colspan="2" align="left">General:</th> + </tr> + <tr> + <td>Greeting:</td> + <td><?php echo $serverinfo->getGreeting() ?></td> + </tr> + <?php if(($servername = $serverinfo->getServerName()) !== false): ?> + <tr> + <td>Server:</td> + <td><?php echo $serverinfo->getServerName() ?></td> + </tr> + <tr> + <td>Version:</td> + <td><?php echo $serverinfo->getServerVersion() ?></td> + </tr> + <?php endif; ?> + <tr> + <td>Hierarchy Delimiter:</td> + <td><?php echo $serverinfo->getHierarchyDelimiter() ?></td> + </tr> + <tr> + <td valign="top">Capabilities:</td> + <td><?php echo implode("<br />", $serverinfo->getCapabilties()) ?></td> + </tr> + <?php if($serverinfo->hasCapability('ACL')): ?> + <tr> + <th colspan="2" align="left">Extension: Access Control List (ACL)</th> + </tr> + <tr> + <td>Available ACL:</td> + <td><?php echo $serverinfo->getAvailableACL() ?></td> + </tr> + <?php endif; ?> + </table> + + <hr size="1" /> + + </div> |