忘了從 1.4.1X 開始 zh_TW編碼就是 設成UTF8 這樣big5 的mail 會是亂碼 簡單的改法就是 squirrelmail/functions/i18n.php [sourcecode language='php'] //$languages['zh_TW']['NAME'] = ‘Chinese Trad’; //$languages['zh_TW']['CHARSET'] = ‘utf-8′; //$languages['zh_TW']['LOCALE'] = ‘zh_TW.UTF-8′; //$languages['tw']['ALIAS'] = ‘zh_TW’; $languages['zh_TW']['NAME'] = ‘Chinese Trad’; $languages['zh_TW']['CHARSET'] = ‘Big5′; $languages['zh_TW']['LOCALE'] = ‘zh_TW.Big5′; $languages['tw']['ALIAS'] = ‘zh_TW’; [/sourcecode] 這樣就成了…..
posted in FreeBSD by johnpupu
1 make buildworld 1.1 請先做cvsup 更新src(記得先裝cvsup-with-gui 等等會用到) [sourcecode language='bash'] # cd /usr/ports/net/cvsup-without-gui; make install clean [/sourcecode] 1.2 [sourcecode language='bash'] # cd /usr/src; make buildworld [/sourcecode] 2 make release 2.1 [sourcecode language='bash'] # cp /usr/share/examples/cvsup/cvs-supfile /etc [/sourcecode] 2.2 [sourcecode language='bash'] # mkdir /home/ncvs /home/releng [/sourcecode] 2.3 [sourcecode language='bash'] # vi /etc/cvs-supfile *default host=cvsup.tw.FreeBSD.org *default prefix=/home/ncvs [/sourcecode] [...]
posted in 有的沒的 by johnpupu
SERVER Side 設定 # cd /usr/ports/mail/pop3gwd/ # make install clean # vim /etc/inetd.conf 加入 [sourcecode language='bash'] pop3 stream tcp nowait root /usr/libexec/tcpd /usr/local/libexec/pop3gwd [/sourcecode] # vim /etc/rc.conf 加入 [sourcecode language='bash'] inetd_enable=”YES” /etc/rc.d/inetd restart [/sourcecode] Client Side 設定 Pop3 主機請設安裝pop3gwd 的位置 例如 192.168.2.220 Outlook 帳號設定 username#server 例如 john#mail.green-computing.com
posted in FreeBSD by johnpupu