メールのスパムフィルタとして scbayes(in scmail) を使っているが、メールサーバの移設に併せて、scmail のフィルタも使ってみることにした。
イロイロと参考にしたが、scmail-deliver がどうもうまく機能しない(振り分けられない)。
で、試行錯誤した結果、次の設定で動作した。
(add-filter-rule!
'(from
("foo@example.com" ".from.foo") )
'(to
("ml-bar@example.net" ".ml.bar") )
'(subject
("baz-group" ".grp.baz") ))
どこかに、ドット対("hare" . ".from.hare") で設定されていたが、それだと NG だった。
リリースから 10年近く経つが、scbayes といい、scmail といい、筋が良いソフトだよなぁ。
http://www.postfix-jp.info/trans-2.2/jhtml/mailq.1.html
こんな感じ
sendmail -r myadr@example.net -t < contents.txt
-r: Return-Path の指定
-t: contents 内の To: CC: にしたがって送信
で、contents.txt はこんなかな
To: youradr@example.com
Cc: someadr@example.org
From: myadr@example.net
Subject: Hey man!
<-- header と body は 1行(以上)空ける
This is a body.
I can write anything in here.
la la la...