對這文章發表回應
發表限制: 非會員 可以發表
發表者: 冷日 發表時間: 2005/2/17 14:55:31
[以FedoraCore1安裝之注意事項]
1)Openwebmail 所需之perl module 請下載 Fedora Core1 版本
http://openwebmail.org/openwebmail/download/redhat/rpm/packages/fc1/
[更多有關 MailScanner 的使用教學]
http://www.study-area.net/tips/v_scan1.htm
http://atm.ee.nsysu.edu.tw/~fgtseng/system/mailscanner.html
http://www.vbird.org/somepaper/20030905-mailscanner-conf.htm
ftp://ohaha.ks.edu.tw/pub/sample/MailScanner/tw.tar.gz
你可以下載ohaha所辛苦製作的中文回報檔,解壓後,將tw目錄放到:
/etc/MailScanner/reports,然後修改:
%report-dir% = /etc/MailScanner/reports/tw
好的,重新啟動MailScanner吧!隨時監控/var/log/maillog
幫助您調整系統。
[MailScanner 中文主旨亂碼解決]
Chinese is double byte word.
Normally, we cannot using mailwatch see chinese word in subjest field.
You may change any to fixed that problem
Step 1> Fine the follow Line , Normally is line 910:
case 'subject':
$row[$f] = decode_header($row[$f]);
$row[$f] = htmlentities($row[$f]);
Step 2> Change to
case 'subject':
$row[$f] = decode_header($row[$f]);
# $row[$f] = htmlentities($row[$f]);
$row[$f] = htmlspecialchars($row[$f]);
By: Andrew Choi - andrewchoi
RE: Subject field support Chinese
2004-05-13 03:19
Sorry, Before message is Edit function.php
1)Openwebmail 所需之perl module 請下載 Fedora Core1 版本
http://openwebmail.org/openwebmail/download/redhat/rpm/packages/fc1/
[更多有關 MailScanner 的使用教學]
http://www.study-area.net/tips/v_scan1.htm
http://atm.ee.nsysu.edu.tw/~fgtseng/system/mailscanner.html
http://www.vbird.org/somepaper/20030905-mailscanner-conf.htm
ftp://ohaha.ks.edu.tw/pub/sample/MailScanner/tw.tar.gz
你可以下載ohaha所辛苦製作的中文回報檔,解壓後,將tw目錄放到:
/etc/MailScanner/reports,然後修改:
%report-dir% = /etc/MailScanner/reports/tw
好的,重新啟動MailScanner吧!隨時監控/var/log/maillog
幫助您調整系統。
[MailScanner 中文主旨亂碼解決]
Chinese is double byte word.
Normally, we cannot using mailwatch see chinese word in subjest field.
You may change any to fixed that problem
Step 1> Fine the follow Line , Normally is line 910:
case 'subject':
$row[$f] = decode_header($row[$f]);
$row[$f] = htmlentities($row[$f]);
Step 2> Change to
case 'subject':
$row[$f] = decode_header($row[$f]);
# $row[$f] = htmlentities($row[$f]);
$row[$f] = htmlspecialchars($row[$f]);
By: Andrew Choi - andrewchoi
RE: Subject field support Chinese
2004-05-13 03:19
Sorry, Before message is Edit function.php