summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-11-25 03:52:12 +0000
committerfukachan <fukachan>2001-11-25 03:52:12 +0000
commit73df8ab29ddeccf5446197d195f3cdab4eeaabef (patch)
tree7433dbf2115e28df73b3daddd2ef0bdbf7520412
parent0ef4f79ad037196bc22a5b368613df061ebd04f8 (diff)
downloadfml8-73df8ab29ddeccf5446197d195f3cdab4eeaabef.tar.gz
fml8-73df8ab29ddeccf5446197d195f3cdab4eeaabef.tar.bz2
fml8-73df8ab29ddeccf5446197d195f3cdab4eeaabef.zip
how to procmail
-rw-r--r--fml/doc/ja/tutorial/book.sgml3
-rw-r--r--fml/doc/ja/tutorial/include/chapters.ent3
-rw-r--r--fml/doc/ja/tutorial/usage/procmail.sgml58
3 files changed, 62 insertions, 2 deletions
diff --git a/fml/doc/ja/tutorial/book.sgml b/fml/doc/ja/tutorial/book.sgml
index 926b7cdd..d269da31 100644
--- a/fml/doc/ja/tutorial/book.sgml
+++ b/fml/doc/ja/tutorial/book.sgml
@@ -2,7 +2,7 @@
This is an sgml using DocBook dtd. Use sgmltools version 2.0.x or above
to generate various output formats.
-$FML: book.sgml,v 1.23 2001/11/24 12:48:09 fukachan Exp $
+$FML: book.sgml,v 1.24 2001/11/25 00:29:42 fukachan Exp $
-->
<!doctype book public "-//FML//DTD DocBook V3.1-Based Extension//EN" [
@@ -52,6 +52,7 @@ $FML: book.sgml,v 1.23 2001/11/24 12:48:09 fukachan Exp $
&chapter.usage.post;
&chapter.usage.command;
&chapter.usage.onhost;
+ &chapter.usage.procmail;
<!-- スレッド追跡システム -->
&chapter.threadtrack.usage;
diff --git a/fml/doc/ja/tutorial/include/chapters.ent b/fml/doc/ja/tutorial/include/chapters.ent
index 845afc80..090b8bd4 100644
--- a/fml/doc/ja/tutorial/include/chapters.ent
+++ b/fml/doc/ja/tutorial/include/chapters.ent
@@ -1,5 +1,5 @@
<!--
- $FML: chapters.ent,v 1.22 2001/11/24 06:54:46 fukachan Exp $
+ $FML: chapters.ent,v 1.23 2001/11/24 12:48:10 fukachan Exp $
-->
<!entity versin "1.1">
@@ -36,6 +36,7 @@
<!entity sect.usage.fmldoc SYSTEM "usage/fmldoc.sgml">
<!entity sect.usage.fmlthread SYSTEM "usage/fmlthread.sgml">
<!entity sect.usage.fmlhtmlify SYSTEM "usage/fmlhtmlify.sgml">
+<!entity chapter.usage.procmail SYSTEM "usage/procmail.sgml">
<!-- コマンド -->
diff --git a/fml/doc/ja/tutorial/usage/procmail.sgml b/fml/doc/ja/tutorial/usage/procmail.sgml
new file mode 100644
index 00000000..81e887aa
--- /dev/null
+++ b/fml/doc/ja/tutorial/usage/procmail.sgml
@@ -0,0 +1,58 @@
+<!--
+ $FML: command.sgml,v 1.1 2001/11/24 03:22:58 fukachan Exp $
+-->
+
+<chapter id="fml.bymyaccount">
+ <title>
+ 自分のアカウントでMLを行ないたい
+ </title>
+
+<para>
+特定の(自分の)アカウントで、個人あてのメールもMLあてのメールも
+処理する必要のある場合があります。
+例えば、ISP のバーチャルドメインサービスの中には
+そういうサービスがあります。
+こういった場合、
+メールのヘッダの To: や Cc: を見て、
+適切に fml を実行する必要があります。
+</para>
+
+
+<para>
+こういった場合、
+fml 5.0 ではユーザが
+procmail などの振分ツールを使うだろうと期待しています :-)
+</para>
+
+
+<sect1 id="procmail">
+ <title>
+ procmail の例
+ </title>
+
+<para>
+<screen>
+PATH=$HOME/bin:/usr/bin:/usr/ucb:/bin:/usr/local/bin:/usr/pkg/bin
+MAILDIR=$HOME/Mail # You'd better make sure it exists
+DEFAULT=$HOME/Mail/mbox
+LOGFILE=$MAILDIR/procmail.log
+LOCKFILE=$HOME/.lockmail
+VERBOSE=on
+
+:0
+* To.*elena@fml.org
+| /usr/local/libexec/fml/fml.pl /var/spool/ml/elena
+
+:0
+* To.*elena-ctl@fml.org
+| /usr/local/libexec/fml/fml.pl /var/spool/ml/elena --ctladdr
+
+# last resort, mail for me et. al.
+:0
+inbox/.
+</screen>
+</para>
+
+</sect1>
+
+</chapter>