summaryrefslogtreecommitdiffstats
path: root/apps/admin/modules/server/templates/imapSuccess.php
blob: 57569ad20d8e6ad131ee67841774d09a2eb69158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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>