-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finalized some non working code and a few new features
- Loading branch information
1 parent
6de55ce
commit 3945e62
Showing
39 changed files
with
342 additions
and
627 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
Oct 28, 2016 | ||
*Fixed: All mailboxes gets checked for Unread and Total Count. | ||
|
||
|
||
Oct 26, 2016 Ver 1.0.0 | ||
|
||
Initial Release | ||
|
||
Features: | ||
* User Details | ||
** System User ID: 1 | ||
** Edentity Name | ||
** Email Address | ||
** Account Create Date | ||
** Last Login | ||
** Total Storage | ||
** Used Storage | ||
** Current IP Address | ||
** Support URL | ||
|
||
* User System Details | ||
** Operating System | ||
** Screen Resolution | ||
** Web Browser: | ||
** Version | ||
** User Agent | ||
|
||
* Mailbox Details: | ||
** Inbox | ||
** Drafts Folder | ||
** Sent Folder | ||
** Trash Folder | ||
** Junk Folder | ||
** Archive Folder | ||
|
||
* Server Details | ||
** Server Location | ||
** Server OS | ||
** Server Memory | ||
** Server CPU Load | ||
** Server Uptime | ||
** PHP Version | ||
** Webmail URL | ||
** Roundcube Version | ||
** Outgoing SMTP | ||
** Incoming IMAP | ||
|
||
|
||
* Calendar URL's | ||
|
||
* Address Books | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
|
||
Got Money? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
function get_server_cpu_usage(){ | ||
|
||
$load = sys_getloadavg(); | ||
return $load[0]; | ||
|
||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
function get_server_memory_usage(){ | ||
|
||
$free = shell_exec('free'); | ||
$free = (string)trim($free); | ||
$free_arr = explode("\n", $free); | ||
$mem = explode(" ", $free_arr[1]); | ||
$mem = array_filter($mem); | ||
$mem = array_merge($mem); | ||
$memory_usage = $mem[2]/$mem[1]*100; | ||
|
||
return $memory_usage; | ||
} | ||
|
||
?> |
Oops, something went wrong.