memo.xight.org

日々のメモ

AWStat Tips

AWStats6.0 ログをUTF8に変換して検索語の文字化け回避

  http://cyberam.dip.jp/linux_server/log/awstats60_main.html

Anti-spam domain blacklist

  Fighting email spamdom-bl.txtを利用.
  - awstats.conf の設定 (ちょっと強引)

LogFile="cat /var/log/httpd/access.log.`/bin/date -v-1d +%Y%m%d` | grep -v -f REFERERSPAMLIST |"

AWStats用語集

  http://www.bflets.dyndns.org/Tools/AWStatsDocs_JP/awstats_glossary_jp.html

Reference

  /home/pochi/ChangeLog - 2005-06-27
  http://www.pochi.cc/~sasaki/chalow/2005-06-27-2.html

  /home/pochi/ChangeLog - 2005-06-06
  http://www.pochi.cc/~sasaki/chalow/2005-06-06-1.html

  /home/pochi/ChangeLog - 2004-08-31
  http://www.pochi.cc/~sasaki/chalow/2004-08-31-5.html

del.icio.us direc.tor - Delivering A High-Performance AJAX Web Service Broker

Reference

  del.icio.us direc.tor: Delivering A High-Performance AJAX Web Service Broker :: Johnvey
  http://johnvey.com/features/deliciousdirector/

via

  読書記録ChangeLog - 2005-06-27
  http://dkiroku.com/2005-06-27-7.html
  Going My Way - 2005-06-25 - del.icio.usをスムーズに検索するdel.icio.us direc.tor
  http://kengo.preston-net.com/archives/002021.shtml

View Your Mind

Summary

  Qtベースの MindMap ソフトウェア.
  クリックして拡大

Reference

  View Your Mind
  http://www.insilmaril.de/vym/
  SourceForge - View Your Mind
  http://sourceforge.net/projects/vym

via

  読書記録ChangeLog - 2005-06-27
  http://dkiroku.com/2005-06-27-2.html
  生きてま - 2004-09-22
  http://log.giantech.jp/daylist_html?year=2004&month=9&day=22

c-sig で複数の署名を利用する

c-sig のインストール

# aptitude install c-sig


.emacs の設定

(autoload 'add-signature "c-sig" "c-sig" t)
(autoload 'delete-signature "c-sig" "c-sig" t)
(autoload 'insert-signature-eref "c-sig" "c-sig" t)          ;; 対話的に選択する.
(autoload 'insert-signature-automatically "c-sig" "c-sig" t) ;; データベースからの検索結果に従って自動的に挿入する.
(autoload 'insert-signature-randomly "c-sig" "c-sig" t)      ;; ランダムに挿入する.

;;; Mewでシグネチャを対話的に選択する設定
(add-hook 'mew-draft-mode-hook
  (function (lambda ()
    (define-key mew-draft-mode-map "\C-c\C-i" 'insert-signature-eref)))) 


署名を直接編集するには

.signature.alist を編集
(setq sig-alist '(
( "default" .
"--
Yoshiki SATO <yoshiki@example.com>
")
( "private" .
"--
佐藤 克己 <yoshiki@example.com>
Tel : XXX-XXXX-XXXX
URI : http://xight.org/
")
))
(setq sig-name-alist nil)
(setq sig-regexp-alist nil)


署名を自動設定するには

.signature.alist を編集
;;; anonymous@example.com の署名を default に設定する.
(setq sig-name-alist '(
("anonymous@example.com" . "default")
))
(setq sig-regexp-alist nil)


操作

  M-x add-signature で登録 (.signature.alist が変更される)
  Mew の Draft バッファで C-c C-i でシグネチャの選択バッファ.(p,nで選択,リターンで確定)

Reference

  c-sig のホームページ
  http://www.threeweb.ad.jp/~kshibata/c-sig/
  Mew FAQ (In Japanese) - 5. Mewをもっと便利に使いたい - 5.1 複数あるシグネチャをきりかえて使いたい
  http://www.i.kyushu-u.ac.jp/~minamoto/unix/mew/FAQ/FAQ05/index-j.html#5.1