Skip to content

Commit f06082b

Browse files
committed
v1.1
1 parent 48bde7c commit f06082b

File tree

297 files changed

+759
-461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+759
-461
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ Common issues: https://www.hmailserver.com/documentation/latest/?page=ts_setup_p
5353

5454
Changelog
5555
-----
56+
Version 1.1 (2017-03-12)
57+
- [new] country name and flag in auto-ban info
58+
- [tweak] navigation UI improvements
59+
- [tweak] CSS revamp
60+
- [tweak] selected domain shows all submenus
61+
- [fix] typos in hm_account_externalaccount.php
62+
5663
Version 1.0 (2017-02-08)
5764
- stable release
5865
- minor tweaks and improvements

hMailAdmin/hm_account.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
?>
9797
<div class="box medium">
9898
<h2><?php EchoTranslation("Account") ?></h2>
99-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
99+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
100100
<?php
101101
if (strlen($error_message) > 0) {
102102
$error_message = PreprocessOutput($obLanguage->String($error_message));

hMailAdmin/hm_account_externalaccount.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
if ($DaysToKeepMessages > 0)
6060
$DaysToKeepMessagesValue = $DaysToKeepMessages;
6161
?>
62-
<div class="box">
62+
<div class="box medium">
6363
<h2><?php EchoTranslation("External account") ?></h2>
64-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
64+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
6565
<?php
6666
PrintHiddenCsrfToken();
6767
PrintHidden("page", "background_account_externalaccount_save");
@@ -82,8 +82,8 @@
8282
<option value="0" selected>POP3</option>
8383
</select>
8484
<?php
85-
PrintPropertyEditRow("ServerAddress", "Server address", $Name, 255);
86-
PrintPropertyEditRow("Port", "TCP/IP port", $Name, 25, "number");
85+
PrintPropertyEditRow("ServerAddress", "Server address", $ServerAddress, 255);
86+
PrintPropertyEditRow("Port", "TCP/IP port", $Port, 25, "number");
8787
?>
8888
<p><?php EchoTranslation("Connection security")?></p>
8989
<select name="ConnectionSecurity" class="medium">
@@ -92,7 +92,7 @@
9292
<option value="<?php echo CONNECTION_SECURITY_TLS?>" <?php if ($ConnectionSecurity == CONNECTION_SECURITY_TLS) echo "selected";?> ><?php EchoTranslation("SSL/TLS")?></a>
9393
</select>
9494
<?php
95-
PrintPropertyEditRow("Username", "User name", $Name, 255);
95+
PrintPropertyEditRow("Username", "User name", $Username, 255);
9696
PrintPasswordEntry("Password", "Password", 255);
9797
?>
9898
</div>

hMailAdmin/hm_account_externalaccounts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<td><a href="?page=account_externalaccount&action=edit&domainid=' . $domainid . '&accountid=' . $accountid . '&faid=' . $FAID . '">' . $Name . '</a></td>
4646
<td><a href="?page=account_externalaccount&action=edit&domainid=' . $domainid . '&accountid=' . $accountid . '&faid=' . $FAID . '">' . $ServerAddress . '</a></td>
4747
<td><a href="#" onclick="return Confirm(\'Confirm delete <b>' . $Name . '</b>:\',\'Yes\',\'?page=background_account_externalaccount_save&csrftoken=' . $csrftoken . '&action=delete&domainid=' . $domainid . '&accountid=' . $accountid . '&faid=' . $FAID . '\');" class="delete">Delete</a></td>
48-
<td><a href="?page=background_account_externalaccount_save&csrftoken=' . $csrftoken& . 'action=downloadnow&domainid=' . $domainid . '&accountid=' . $accountid . '&faid=' . $FAID . '">' . $str_downloadnow . '</a></td>
48+
<td><a href="?page=background_account_externalaccount_save&csrftoken=' . $csrftoken . 'action=downloadnow&domainid=' . $domainid . '&accountid=' . $accountid . '&faid=' . $FAID . '">' . $str_downloadnow . '</a></td>
4949
</tr>' . PHP_EOL;
5050
}
5151
?>

hMailAdmin/hm_alias.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
?>
3636
<div class="box medium">
3737
<h2><?php EchoTranslation("Alias") ?></h2>
38-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
38+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
3939
<?php
4040
if (strlen($error_message) > 0) {
4141
$error_message = $obLanguage->String($error_message);

hMailAdmin/hm_autoban.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
?>
2323
<div class="box">
2424
<h2><?php EchoTranslation("Auto-ban") ?></h2>
25-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
25+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
2626
<?php
2727
PrintHiddenCsrfToken();
2828
PrintHidden("page", "autoban");

hMailAdmin/hm_backup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
?>
3434
<div class="box">
3535
<h2><?php EchoTranslation("Backup") ?></h2>
36-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
36+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
3737
<?php
3838
PrintHiddenCsrfToken();
3939
PrintHidden("page", "backup");
@@ -55,7 +55,7 @@
5555

5656
<div class="box">
5757
<h2><?php EchoTranslation("Actions") ?></h2>
58-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
58+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
5959
<?php
6060
PrintHiddenCsrfToken();
6161
PrintHidden("page", "backup");

hMailAdmin/hm_blocked_attachment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
?>
2323
<div class="box">
2424
<h2><?php EchoTranslation("Blocked attachment") ?></h2>
25-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
25+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
2626
<?php
2727
PrintHiddenCsrfToken();
2828
PrintHidden("page", "background_blocked_attachment_save");

hMailAdmin/hm_diagnostics.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
$resultString .= "<br/><br/>";
4141
}
4242
?>
43-
<div class="box">
43+
<div class="box medium">
4444
<h2><?php EchoTranslation("Diagnostics") ?></h2>
45-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
45+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
4646
<?php
4747
PrintHiddenCsrfToken();
4848
PrintHidden("page", "diagnostics");

hMailAdmin/hm_distributionlist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
?>
4545
<div class="box medium">
4646
<h2><?php EchoTranslation("Distribution list") ?></h2>
47-
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="cd-form">
47+
<form action="index.php" method="post" onsubmit="return $(this).validation();" class="form">
4848
<?php
4949
if (strlen($error_message) > 0) {
5050
$error_message = $obLanguage->String($error_message);

0 commit comments

Comments
 (0)