1 頁 (共 1 頁)

Webmail for hMailServer

文章發表於 : 2013年 6月 9日, 23:44
kaku
1.下載Webmail Client PHP網頁
webmail_php.zip

2.下載WAMP伺服器(Apache+PHP+MySQL)
http://www.wampserver.com/en/
--安裝wamp時會用到Microsoft Visual C++ 2010,故需先下載並安裝
vcredist_x86.zip

wampserver2.5-Apache-2.4.9-Mysql-5.6.17-php5.5.12-32b.zip

--安裝wampserver2.2e-php5.4.3-httpd2.2.22-mysql5.5.24-32b.exe
--選擇瀏覽器程式時,請找到iexplore.exe
3.將webmail_php.zip解壓縮到E:\hMailServer中
4.修改並複製phpwebadmin.conf 和 webmail.conf至E:\wamp\alias中
conf.zip

webmail.jpg

5.將hMailServer\PHPWebadmin\config-dist.php改名為config.php,並修改內容
webmail2.jpg

--修改hMailServer\PHPWebadmin\index.php內容
webmail3.jpg

6.重啟wamp所有服務
7.測試http://localhost/phpwebadmin
webmail4.jpg

8.安裝設定webmail & MySql資料庫
--先用phpmyadmin去建立一個用戶名 afterlogic (http://localhost/phpmyadmin)(root沒密碼)
--http://localhost/webmail/install/index.php?step=db 建立資料庫及Tables
webmail5.jpg

--Next 測試smtp及imap4
--Next 設定mailadm密碼
--http://localhost/webmail/adminpanel/index.php?login 設定E-Mail Domain連線設定
webmail6.jpg

9.測試登入 http://localhost/webmail
webmail7.jpg

Re: Webmail for hMailServer

文章發表於 : 2016年 3月 26日, 23:15
kaku
WAMP伺服器x64主程式:
wampserver3_x64.zip


WAMP虛擬目錄設定更新for Apache 2.4以上:
wamp64_alias_conf.zip


hMailServer的PHPWebAdmin目錄中的index.php及config.php設定:
PHPWebAdmin.zip

Re: Webmail for hMailServer

文章發表於 : 2020年 9月 8日, 17:01
kaku
因MySQL帳號密碼過期(連root的都過期,導致WebMail無法使用:
------------------------------------------------------
skip-grant-tables <=密碼過期救急用,加在My.ini最下面
重啟MySQL服務
------------------------------------------------------
正確解法:
root需先reset密碼
ALTER USER 'root'@'localhost' IDENTIFIED BY '[輸入新密碼]';

設定以下帳號密碼不過期
ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;
ALTER USER 'afterlogic' PASSWORD EXPIRE NEVER;
------------------------------------------------------

Re: Webmail for hMailServer

文章發表於 : 2020年 9月 8日, 17:14
kaku
WeMail PHP 8.5.0版
webmail_php_8.5.0.zip