squirrelmail インストール
2005-03-28-1 / カテゴリ: [linux][debian][squirrelmail] / [permlink]

http://www.squirrelmail.jp/node.php?id=13
こっちの非公式 deb にて
/etc/apt/sources.list に
deb http://everybody.good-day.net/~nsaito/ squirrelmail/
deb-src http://everybody.good-day.net/~nsaito/ squirrelmail/
を追加
# apt-get install squirrelmail
にて、アップグレード(php4-pearも入る)
で、httpでアクセス
化けない!

squirrelmail で Webメール
2005-03-25-3 / カテゴリ: [linux][debian][squirrelmail] / [permlink]

# apt-get install squirrelmail
(debconf)
Configuring Squirrelmail
What type of Web Server are you running?
	- Apache
	- Apache-SSL
	- Both
	- Other
# /etc/squirrelmail/conf.pl

1(Organization Preferences) -> 6(Default Language) -> "ja_JP"
2(Server Settings) -> 1(Domain) -> 自分のドメイン
                   -> A(Update IMAP Settings) -> まぁいろいろ
4(General Options) -> 1(Default Charset) -> "iso-2022-jp"
うーん、、化ける。officialパッケージだとダメかも。
ja_JPのlocaleも入ってないっぽい
Referrer (Inside): [2005-08-05-2]

apache-php インストール
2005-03-25-2 / カテゴリ: [linux][debian][PHP][Apache] / [permlink]

# apt-get install php4
:
Do you want me to run the apacheconfig script now [y/N] ? n
Ok, not running apacheconfig. Please read the docs in /usr/share/doc/php4
httpd.conf の設定
追加
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
コメント解除
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

以上。
確認は適当なディレクトリで .php に
<?php
	phpinfo();
?>
って書いてブラウザでアクセスすればよい

apache + mod-ssl インストール
2005-03-25-1 / カテゴリ: [linux][debian][Apache][SSL] / [permlink]

http://lists.debian.or.jp/debian-users/200112/msg00163.html
# apt-get install apache
(略)
# apt-get install libapache-mod-ssl
(debconfはなし)
・テスト用証明書の作成
# mod-ssl-makecert
/etc/apache/ssl.crt/server.crt: already present
/etc/apache/ssl.csr/server.csr: already present
/etc/apache/ssl.key/server.key: already present

Do you really want to overwrite the existing certificate ? [y/N]:  <- y

What type of certificate do you want to create ?

1. dummy    (dummy self-signed Snake Oil cert)
2. test     (test cert signed by Snake Oil CA)
3. custom   (custom cert signed by own CA)
4. existing (existing cert)
:
> 2 (外用なら3ぽい)

STEP 2 Generating X.509 certificate signing request [server.csr]
1. Country Name             (2 letter code) [XY]:JP
2. State or Province Name   (full name)     [Snake Desert]:Kanagawa
3. Locality Name            (eg, city)      [Snake Town]:Yokohama
4. Organization Name        (eg, company)   [Snake Oil, Ltd]:home
5. Organizational Unit Name (eg, section)   [Webserver Team]:Administrator
6. Common Name              (eg, FQDN)      [www.snakeoil.dom]:localhost
7. Email Address            (eg, name@FQDN) [www@snakeoil.dom]:webmaster@localhost
8. Certificate Validity     (days)          [365]:

STEP 3 Generating X.509 certificate signed by Snake Oil CA [server.crt]
Certificate Version (1 or 3) [3]:

STEP 4: Enrypting RSA private key with a pass phrase for security [server.key]
The contents of the server.key file (the generated private key) has to be
kept secret. So we strongly recommend you to encrypt the server.key file
with a Triple-DES cipher and a Pass Phrase.
Encrypt the private key now? [Y/n]:      <- n

RESULT: Server Certification Files

o  conf/ssl.key/server.key
   The PEM-encoded RSA private key file which you configure
   with the 'SSLCertificateKeyFile' directive (automatically done
   when you install via APACI). KEEP THIS FILE PRIVATE!

o  conf/ssl.crt/server.crt
   The PEM-encoded X.509 certificate file which you configure
   with the 'SSLCertificateFile' directive (automatically done
   when you install via APACI).

o  conf/ssl.csr/server.csr
   The PEM-encoded X.509 certificate signing request file which
   you can send to an official Certificate Authority (CA) in order
   to request a real server certificate (signed by this CA instead
   of our demonstration-only Snake Oil CA) which later can replace
   the conf/ssl.crt/server.crt file.

httpd.conf の設定
sarge なら、/usr/share/doc/libapache-mod-ssl/ に mod-ssl.conf,
vhost.conf.gz として設定ファイル例があるが、woody はない…
<IfModule mod_ssl.c>
  〜

<VirtualHost>
〜
を追加
Referrer (Inside): [2005-08-28-1] [2005-08-09-1]

Fedora に rsh,rcp,rlogin インストール
2005-03-24-1 / カテゴリ: [linux][command][fedora] / [permlink]

パッケージは Disc#3
# cp -p /mnt/cdrom/Fedora/RPMS/rsh-server-0.17-19.i386.rpm .
# rpm -ivh rsh-server-0.17-19.i386.rpm
# chkconfig rsh on
# /etc/init.d/xinetd restart
$ echo "クライアントのIPアドレス クライアントでのユーザ名" > .rhosts
$ chmod 600 .rhosts

クライアントで
$ rsh -l Fedoraのユーザ名 Fedoraのアドレス Fedoraでのコマンド	

(scpでなく) ssh コマンドでファイル転送
2005-03-22-1 / カテゴリ: [linux][ssh] / [permlink]

% command | ssh user@server 'cat > ~/file'
ファイルを転送し、それを使って更にリモートでコマンド実行! なんて時は便利
かも
% cat file | ssh user@server 'cat > ~/file; remote-command ~/file'

wanderlust 添付ファイルを保存するには
2005-03-17-2 / カテゴリ: [linux][wanderlust] / [permlink]

j でメッセージバッファへ移動し、n/p で、保存したいパートへ移動
パート名(?)にカーソルを合わせ、e で、"Methods : " と聞いてくるので
"mime-save-content"と入力。

wanderlust キーバインド2
2005-03-17-1 / カテゴリ: [linux][wanderlust] / [permlink]

サマリーモード
y 表示しているメールの生データを別ファイルに保存

tcsh,bash,zsh(TABが補完キーのシェル)でタブ(\t)の入力
2005-03-09-2 / カテゴリ: [unix][linux][shell] / [permlink]

C-v のあと、TAB を押下する
grep なんかで \t を見つけたいとき使え

sed のマッチ箇所のキャプチャ
2005-03-09-1 / カテゴリ: [unix][linux][正規表現][command] / [permlink]

% sed -e 's/\(regex\)/\1/'
"逆スラ番号"で

wget で post
2005-03-04-2 / カテゴリ: [linux][command] / [permlink]

$ wget --post-data='foo=bar&hoge=hage' http://www.example.org/
ただし、1.9.1 以降

wget で cookie
2005-03-04-1 / カテゴリ: [linux][command] / [permlink]

http://www.yotabanana.com/lab/0516.html?date=0516
$ wget --save-cokkie=cookie.txt http://www.example.org/
$ wget --load-cookie=cookie.txt http://www.example.org/
みたいな

wanderlust サマリでマルチパートメールの横に'@'マーク
2005-03-03-6 / カテゴリ: [linux][wanderlust] / [permlink]

http://emacs-21.ki.nu/application/wl.html
;; メールDBにcontent-typeを加える
(setq elmo-msgdb-extra-fields
    (cons "content-type" elmo-msgdb-extra-fields))
;; 添付ファイルがある場合は「@」を表示
(setq wl-summary-line-format "%n%T%P%1@%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %#%~%s")
(setq wl-summary-line-format-spec-alist
      (append wl-summary-line-format-spec-alist
              '((?@ (wl-summary-line-attached)))))
変更後に、サマリを update する (s -> all)

日本語の添付ファイルの表示
2005-03-03-5 / カテゴリ: [linux][wanderlust] / [permlink]

http://www.kakutani.com/20040422.html
;;日本語の添付ファイル名を正しく表示
;;これがないと化けます.
(defvar my-mime-filename-coding-system-for-decode
  '(iso-2022-jp japanese-shift-jis japanese-iso-8bit))
(defun my-mime-decode-filename (filename)
  (let ((rest (eword-decode-string filename)))
    (or (when (and my-mime-filename-coding-system-for-decode
                   (string= rest filename))
          (let ((dcs (mapcar (function coding-system-base)
                             (detect-coding-string filename))))
            (unless (memq 'emacs-mule dcs)
              (let ((pcs my-mime-filename-coding-system-for-decode))
                (while pcs
                  (if (memq (coding-system-base (car pcs)) dcs)
                      (setq rest (decode-coding-string filename (car pcs))
                            pcs nil)
                    (setq pcs (cdr pcs))))))))
        rest)))

(eval-after-load "mime"
  '(defadvice mime-entity-filename (after eword-decode-for-broken-MUA activate)
     "Decode encoded file name for BROKEN MUA."
     (when (stringp ad-return-value)
       (setq ad-return-value (my-mime-decode-filename ad-return-value)))))
(require 'std11)

;; ファイル名が日本語の添付ファイルをエンコードする [semi-gnus-ja: 6046]
(eval-after-load "std11"
  '(defadvice std11-wrap-as-quoted-string 
     (before encode-string activate)
     "Encode a string."
   (require 'eword-encode)
   (ad-set-arg 0 (eword-encode-string (ad-get-arg 0)))))
... こっちのほうが良いかも (↑asciiのみの添付ファイル名が表示できない…)
http://emacs-21.ki.nu/application/wl.html

Wanderlust の Maildir/ 購読設定
2005-03-03-2 / カテゴリ: [linux][wanderlust] / [permlink]

.folder に
./
を書いておく。.elmo/finfo はリセットしておく。
Referrer (Inside): [2005-12-22-1]

Wanderlust のオンライン オフライン切り替え
2005-03-03-1 / カテゴリ: [linux][wanderlust] / [permlink]

C-t (screen ^t^t 中なら C-t C-t)
これで、既存設定の何をオンラインにするのかを{SPC,RET}で切り替える
終わったら q で
M-t で、全てを一気にオンライン/オフライン切り替え

Mew で Maildir
2005-03-02-9 / カテゴリ: [linux][メール][アプリ] / [permlink]

ちょっと制限ありすぎ
基本は .mew.el に
(setq mew-mailbox-type 'mbox)
(setq mew-mbox-command "incm")
(setq mew-mbox-command-arg "-d /home/zaki/Maildir/")
で OK だけど
arg で指定するオプションにより ("-a -d /path/maildir" など)
<初期状態>
       cur/{1,2}
       new/{3,4}
<opt無しのincm>
       cur/{1,2}
       new/{}
       to inbox: {3,4}
<-a>
       cur/{}
       new/{}
       to inbox: {1,2,3,4}
<-b>
       cur/{1,2,3,4}
       new/{}
       to inbox: {3,4}
<-a -b>
       cur/{1,2,3,4}
       new/{}
       to inbox: {1,2,3,4}
て感じ。
つまり、頑張っても new しか読めないか、Maildir 以下が消える(そして
Mail/inbox へ移動)
要するに、Maildir/ を読むのではなく、Maildir/ からインポートして inbox を
読むってこと。っぽい
自分的に使えない…残念。

html構文チェック
2005-03-02-8 / カテゴリ: [linux][html] / [permlink]

$ tidy index.html
$ tidy -e index.html (エラーのみ出力)

zsh のエイリアスでパイプ指定
2005-03-02-5 / カテゴリ: [unix][linux][shell] / [permlink]

alias -g L='| lv'
alias -g H='| head'
alias -g T='| tail'
alias -g W='| wc'
alias -g G='| grep'
これで
% command L

% command | lv
と同じことになる
カテゴリ: linux / 前ページ 1 2 3 4 5 6 7 8 9 10 11 12 次ページ

最終更新時間: 2013-05-02 16:12