fetchmail で procmail を使わずにファイルに落とす
2005-06-24-1 / カテゴリ: [linux][メール][command] / [permlink]

[2004-09-09]では「そのままファイルに落とす」といいつつ procmail 使ってるので訂正
mda "/bin/cat - > /dir/file"
これでいける

SMTP auth の設定
2005-05-08-1 / カテゴリ: [linux][メール][wanderlust] / [permlink]

.wl に
(setq wl-smtp-posting-user "smtp auth user name")
(setq wl-smtp-authenticate-type "mechanism")
と。
mechanism のとこは、"cram-md5" とか "plain" とか
http://www.gohome.org/wl/doc/wl-euc_95.html

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 を
読むってこと。っぽい
自分的に使えない…残念。

まとめおくり postfix
2005-02-01-1 / カテゴリ: [linux][MTA][SMTP][メール][Postfix] / [permlink]

http://lists.debian.or.jp/debian-users/200112/msg00232.html
同じメールで複数あて先の場合、1smtp session で送信するらしい。
qmail は1メール 1セッション(つーか、1プロセス)

SMTP メールのフォーマット (rfc2822)
2004-12-22-1 / カテゴリ: [unix][network][SMTP][メール] / [permlink]

本文の 1行は CRLF 除いて 998 文字以下(MUST) 78文字以下(SHOULD)
(2.1.1. Line Length Limits)
ヘッダは
ヘッダのフィールド名は printable US-ASCII(33 - 126), コロン
フィールドbodyは CR,LF を除く任意の US-ASCII
フィールドbodyが複数行にまたがる場合(folding)は、white space で始まる

mutt キーバインド(リスト表示時)
2004-10-14-2 / カテゴリ: [linux][メール][アプリ] / [permlink]

= 先頭へ (mew の <)
* 末尾へ (mew の >)

mutt Maildir 形式
2004-10-13-1 / カテゴリ: [linux][メール][アプリ] / [permlink]

ディレクトリ移動
=.dirname

mutt ディレクトリ移動
2004-10-06-1 / カテゴリ: [linux][メール][アプリ] / [permlink]

c
のあと、ディレクトリ名
Maildir 形式のサブディレクトリの .dirname の場合は
=.dirname
と、頭に = をつける

fetchmail で MTA にメールを渡さずそのままファイルへ落とす
2004-09-09-1 / カテゴリ: [linux][メール][command] / [permlink]

mda "/usr/bin/procmail"
で、そのまま procmail へ処理を渡して、そっちで記述する

cygwin fetchmail procmail
2004-08-21-1 / カテゴリ: [win][メール][cygwin] / [permlink]

procmail: Suspicious rcfile "/home/hmiyazaki/.procmailrc"
procmail: Couldn't read "/home/hmiyazaki/.procmailrc"
ひたすらこのエラーがでる
/home/hmiyazaki/.procmailrc は問題ない
原因は、/home/hmiyazaki が 777 になっていた
cygwin 環境だとアリガチかも。
Referrer (Inside): [2005-12-21-2]

Postfix ログ監視(ログのフォーマット)
2004-03-09-6 / カテゴリ: [linux][MTA][メール][Postfix] / [permlink]

postfix の mail.log から、配送量の統計情報をチェックする際のポインタ

######## local to local ########
Jan 11 12:20:45 cheddar postfix/pickup[31737]: 674497D8092: uid=0 from=<root>
Jan 11 12:20:45 cheddar postfix/cleanup[32665]: 674497D8092: message-id=<20040111032042.674497D8092@mail.example.org>
Jan 11 12:20:46 cheddar postfix/qmgr[296]: 674497D8092: from=<root@mail.example.org>, size=311, nrcpt=1 (queue active)
Jan 11 12:20:46 cheddar postfix/local[32667]: 674497D8092: to=<zaki@mail.example.org>, relay=local, delay=4, status=sent ("|procmail -a "$EXTENSION"")
################################

######## remote(ezweb) to local #######
Jan 11 16:11:58 cheddar postfix/smtpd[4378]: connect from im11omta02.ezweb.ne.jp[61.117.2.67]
Jan 11 16:11:58 cheddar postfix/smtpd[4378]: E5E507D8092: client=im11omta02.ezweb.ne.jp[61.117.2.67]
Jan 11 16:11:59 cheddar postfix/cleanup[4379]: E5E507D8092: message-id=<20040111071146.IHO22830@im11imap12-s0.ezweb.ne.jp>
Jan 11 16:11:59 cheddar postfix/qmgr[296]: E5E507D8092: from=<******@ezweb.ne.jp>, size=1173, nrcpt=1 (queue active)
Jan 11 16:11:59 cheddar postfix/smtpd[4378]: disconnect from im11omta02.ezweb.ne.jp[61.117.2.67]
################################

######## local to remote(ezweb, t.vodafone) #######
Jan 11 16:11:59 cheddar postfix/smtpd[4378]: connect from localhost[127.0.0.1]
Jan 11 16:11:59 cheddar postfix/smtpd[4378]: E87827D8093: client=localhost[127.0.0.1]
Jan 11 16:12:00 cheddar postfix/cleanup[4379]: E87827D8093: message-id=<20040111071146.IHO22830@im11imap12-s0.ezweb.ne.jp>
Jan 11 16:12:00 cheddar postfix/smtpd[4378]: disconnect from localhost[127.0.0.1]
Jan 11 16:12:00 cheddar postfix/qmgr[296]: E87827D8093: from=<fooML-admin@mail.example.org>, size=2097, nrcpt=4 (queue active)
Jan 11 16:12:00 cheddar postfix/local[4381]: E5E507D8092: to=<fooML@mail.example.org>, relay=local, delay=2, status=sent ("|/usr/share/fml/fml.pl /var/spool/ml/fooML")
Jan 11 16:12:20 cheddar postfix/smtp[4385]: E87827D8093: to=<******@ezweb.ne.jp>, relay=lsean.ezweb.ne.jp[219.125.149.6], delay=21, status=sent (250 Ok: queued as D478683)
Jan 11 16:12:21 cheddar postfix/smtp[4386]: E87827D8093: to=<******@t.vodafone.ne.jp>, relay=mx.t.vodafone.ne.jp[210.175.1.210], delay=22, status=sent (250 Message received: 20040111071220328.EFFS.9955@tgmsbmtk01sc.t.vodafone.ne.jp)
################################
Jan 15 12:02:45 cheddar postfix/smtpd[11399]: connect from mgstc03.t.vodafone.ne.jp[210.151.9.74]
Jan 15 12:02:45 cheddar postfix/smtpd[11399]: 1A2A47D8092: client=mgstc03.t.vodafone.ne.jp[210.151.9.74]
Jan 15 12:02:45 cheddar postfix/cleanup[11400]: 1A2A47D8092: message-id=<200401150302.MAA28281@t.vodafone.ne.jp>
Jan 15 12:02:45 cheddar postfix/qmgr[296]: 1A2A47D8092: from=<******@t.vodafone.ne.jp>, size=764, nrcpt=1 (queue active)
Jan 15 12:02:45 cheddar postfix/smtpd[11399]: disconnect from mgstc03.t.vodafone.ne.jp[210.151.9.74]
Jan 15 12:02:45 cheddar postfix/local[11402]: 1A2A47D8092: to=<zaki@mail.example.org>, relay=local, delay=0, status=sent ("|procmail -a "$EXTENSION"")

結論としては…
receive は "$host postfix/smtpd[xxx]: connect" をカウント
deliver(local) は "$host postfix/local"をカウント
deliver(remote) は "$host postfix/smtp ... status=sent"をカウント
deferred は "$host postfix/smtp ... status=deferred"をカウント
カテゴリ: メール / 前ページ 1 2

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