Category Archives: Software

Software

WordPress 上的 SpamLookup

在看到 MT 上的 後,打算把這些功能在下個版本 implement 出來:Default Spam Handling

Feature SpamLookup Plugin WordPress Core
IP-based lookup Yes No
Domain-based lookup Yes No
TrackBack IP check * Yes No
Passphrase checks Yes No
Checking HTTP Headers Yes No
Hyperlink Count limits Yes Yes
Dynamic proxy checking Yes Yes
Wordlists (blacklist/graylist) Yes Yes
Whitelist URL checks No Yes
Whitelist Author checks No Yes

看起來很完整啊,不知道能不能把 Spam Karma 換掉 :p

Mozilla/Firefox 的蜜月期已經過去

標題寫得很清楚,當 佔有率愈來愈高,他就必須面對現實:一個是 Close Source Software,一個是 Open Source Software,你必須接受在立足點不同的情況下,擁有超越 IE 的安全性。(因為在官方網站上面 “Why Use Firefox?” 其中一條是 “Privacy and Security”)

如果 IE 的程式碼攤開來讓大家檢查,我相信 會遠比 IE 安全。

但就現在一個是 Close Source 一個是 Open Source,我不認為 的安全性比 IE 高。IE 在 WindowsXP SP2 做得相當好,當出現要安裝奇怪的 ActiveX 時,你不會再不小心誤按 Yes,這點跟 的 Install Software 一樣。

就安全性的觀點來看,IE 的安全性是輸在用的人多,而我用 是因為用的人少。

聽起來很像「」裡面的公車理論?

不,跟公車理論不一樣:我不會去阻止其他人用 ,但我不會像某些人大力唾棄 IE 而建議 non-Geeks 使用

Skypesee 與 Skypecasting

是一個 p2p video software,我是在 那邊「Skypesee」這篇文章看到的,裡面有張 的照片,不過用 找了找,好像跟 沒有關係?

另外一個是在 上看到 這篇文章,這個是跟 有關的沒錯 :)

Skypecasting 是結合 與 Podcasting,讓有經驗的使用者可以透過 放送:

Technologically savvy users are merging these technologies to “Skypecast”, using Skype’s service to distribute recordings across the internet for free. This allows expert users to run their own mini-radio stations, which can be accessed by any Skype user.

如果我沒記錯的話, 之前有提過相關的經驗,不過我在他網站上面沒找到?哪位好心大哥哥大姊姊幫忙一下?XD

PS:我覺得 下的標題很糟,我一開始才還想為什麼要跟 打對台 :p

另一套 antispam 的軟體 – SpamBayes

最近在測 寫的 ,用了一下發現還蠻簡單的,而且速度不錯。(有可能是因為 ,而 4 的原因)

(mail/py-spambayes) 裝好後 sb_filter.py 就是最簡單的介面,加上 -h 可以看到說明,不加參數跟 -f 一樣,代表 filter,會在 header 加上 X-Spambayes-Classification,可以丟給 或是其他程式判斷。

其他的選項應該只會用到 -g (train as ham) 與 -s (train as spam),可以放到 .muttrc 裡面方便自己 train,有興趣的人可以玩看看:

macro index X "<pipe-entry>sb_filter.py -s > /dev/null\n<delete-message>" "mark as spam"
macro pager X "<pipe-entry>sb_filter.py -s > /dev/null\n<delete-message>" "mark as spam"
macro index Z "<pipe-entry>sb_filter.py -g > /dev/null\n" "mark as innocent"
macro pager Z "<pipe-entry>sb_filter.py -g > /dev/null\n" "mark as innocent"

Windows 上 IPv6 ssh client – PuTTY 0.58

看到 這個有名的 ssh client 出 0.58 了,包括:

PuTTY now supports IPv6, xterm 256-color control sequences, wildcards and recursive file transfer in PSFTP, and keepalives in all operating systems. A number of small bugs were fixed, security was improved for SSH2, and port forwarding can now be reconfigured mid-session.

IPv6 support!

不過走 6to4 Gateway 看起來很慘啊,國內好像沒人放 (中央研究院計算中心的不通,不知道是不是我設定錯誤) 6to4 Gateway:

倒是走 2002:: 互跳比較快:(廢話)

MySQL 升級問題

從 5.0.1 升級到 5.0.2 後發現所有 connection 連過去都會被 access denied,看起來像是 privilege table 發生問題。

--skip-grant-tables 開起來進去看發現 password 的部分居然是舊的格式?該不會是當年從 3.23.58 升級上來的時候沒重設 password 吧 :P

重設了以後看起來正常了,特此記錄幹剿 XD