summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-12-14 12:39:15 +0000
committerfukachan <fukachan>2005-12-14 12:39:15 +0000
commit4f71535a230117977554d3bf96bbc930cbf4ce28 (patch)
tree2c1a597c8b89bd984136f52f7a54e0f51dbf27b0
parent37f3c98d94324f4ae78d9f07cad85cc0f4c2ab95 (diff)
downloadfml8-4f71535a230117977554d3bf96bbc930cbf4ce28.tar.gz
fml8-4f71535a230117977554d3bf96bbc930cbf4ce28.tar.bz2
fml8-4f71535a230117977554d3bf96bbc930cbf4ce28.zip
recipe-ify
-rw-r--r--fml/doc/en/tutorial/customize/command_permit_anyone.sgml78
-rw-r--r--fml/doc/en/tutorial/customize/post_check_article_thread.sgml42
-rw-r--r--fml/doc/en/tutorial/customize/post_check_pgp_signature.sgml22
-rw-r--r--fml/doc/ja/tutorial/customize/command_permit_anyone.sgml79
-rw-r--r--fml/doc/ja/tutorial/customize/post_check_article_thread.sgml41
-rw-r--r--fml/doc/ja/tutorial/customize/post_check_pgp_signature.sgml21
6 files changed, 271 insertions, 12 deletions
diff --git a/fml/doc/en/tutorial/customize/command_permit_anyone.sgml b/fml/doc/en/tutorial/customize/command_permit_anyone.sgml
index 5167d246..f0f56b9c 100644
--- a/fml/doc/en/tutorial/customize/command_permit_anyone.sgml
+++ b/fml/doc/en/tutorial/customize/command_permit_anyone.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: command_permit_anyone.sgml,v 1.2 2005/07/20 10:37:43 fukachan Exp $
+ $FML: command_permit_anyone.sgml,v 1.3 2005/09/24 13:53:41 fukachan Exp $
$jaFML: command_permit_anyone.sgml,v 1.2 2003/01/05 08:00:59 fukachan Exp $
-->
@@ -17,4 +17,80 @@ command_mail_restrictions = permit_anyone
</screen>
</para>
+<sect2>
+ <title>
+ Recipes
+ </title>
+
+<qandaset>
+
+<qandaentry>
+
+<question>
+<para>
+Anyone can use command mail.
+</para>
+</question>
+
+<answer>
+<para>
+<screen>
+command_mail_restrictions = permit_anyone
+</screen>
+</para>
+</answer>
+
+</qandaentry>
+
+
+<qandaentry>
+
+<question>
+<para>
+Anyone except system accounts can use command mail.
+</para>
+</question>
+
+<answer>
+<para>
+<screen>
+command_mail_restrictions = reject_system_accounts
+ permit_anyone
+</screen>
+</para>
+</answer>
+
+</qandaentry>
+
+<qandaentry>
+
+<question>
+<para>
+nobody use command mail.
+</para>
+</question>
+
+<answer>
+<para>
+<screen>
+command_mail_restrictions = reject
+</screen>
+</para>
+
+<para>
+There are other methods to disable command mail.
+See
+<link linkend="config.command.rejectall">
+<xref linkend="config.command.rejectall">
+</link>
+for more details.
+</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
+</sect2>
+
</sect1>
diff --git a/fml/doc/en/tutorial/customize/post_check_article_thread.sgml b/fml/doc/en/tutorial/customize/post_check_article_thread.sgml
index d0afd892..d2b3a2d3 100644
--- a/fml/doc/en/tutorial/customize/post_check_article_thread.sgml
+++ b/fml/doc/en/tutorial/customize/post_check_article_thread.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: post_check_article_thread.sgml,v 1.1 2005/07/20 10:37:43 fukachan Exp $
+ $FML: post_check_article_thread.sgml,v 1.2 2005/09/24 13:53:41 fukachan Exp $
$jaFML: post_check_article_thread.sgml,v 1.3 2005/06/25 14:12:52 fukachan Exp $
-->
@@ -40,9 +40,21 @@ within some time limit (e.g. one week).
<sect2>
<title>
- Examples
+ Recipes
</title>
+<qandaset>
+
+<qandaentry>
+
+<question>
+<para>
+Article Posting Allowd If It Is A Reply To The Former One.
+</para>
+</question>
+
+<answer>
+
<para>
"check_article_thread" is the keyword to enable this check.
<screen>
@@ -55,6 +67,12 @@ Not used by default.
To use it, specify it at article_post_restrictions.
</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
</sect2>
@@ -92,9 +110,21 @@ If so, we should check the corelation between subject: and the thread?
<sect2>
<title>
- Applied Example: Only A Few Persons Can Starts Article Thread.
+ Recipes
</title>
+<qandaset>
+
+<qandaentry>
+
+<question>
+<para>
+Only A Few Persons Can Starts Article Thread.
+</para>
+</question>
+
+<answer>
+
<para>
<screen>
member_maps = $tmp_dir/members-thread-init
@@ -128,6 +158,12 @@ article_post_restrictions = reject_system_special_accounts
</screen>
</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
</sect2>
</sect1>
diff --git a/fml/doc/en/tutorial/customize/post_check_pgp_signature.sgml b/fml/doc/en/tutorial/customize/post_check_pgp_signature.sgml
index 721ad12a..918305fe 100644
--- a/fml/doc/en/tutorial/customize/post_check_pgp_signature.sgml
+++ b/fml/doc/en/tutorial/customize/post_check_pgp_signature.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: post_check_pgp_signature.sgml,v 1.1 2005/07/20 10:37:43 fukachan Exp $
+ $FML: post_check_pgp_signature.sgml,v 1.2 2005/09/24 13:53:41 fukachan Exp $
-->
@@ -18,9 +18,21 @@ other packages.
<sect2>
<title>
- Configuration Example
+ Recipes
</title>
+<qandaset>
+
+<qandaentry>
+
+<question>
+<para>
+PGP/PGP Based Authentication In Posting
+</para>
+</question>
+
+<answer>
+
<para>
check_pgp_signature options enables PGP/GPG based auth.
If the degital signature is confirmed, the user can post articles.
@@ -33,6 +45,12 @@ This function is disabled by default.
Change article_post_restrictions if use.
</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
</sect2>
diff --git a/fml/doc/ja/tutorial/customize/command_permit_anyone.sgml b/fml/doc/ja/tutorial/customize/command_permit_anyone.sgml
index 682dabe2..687ecf7c 100644
--- a/fml/doc/ja/tutorial/customize/command_permit_anyone.sgml
+++ b/fml/doc/ja/tutorial/customize/command_permit_anyone.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: command_permit_anyone.sgml,v 1.3 2004/04/07 11:07:02 fukachan Exp $
+ $FML: command_permit_anyone.sgml,v 1.4 2004/10/06 09:07:34 fukachan Exp $
-->
@@ -22,4 +22,81 @@ command_mail_restrictions = permit_anyone
設定は可能です。
</para>
+
+<sect2>
+ <title>
+ レシピ’s
+ </title>
+
+<qandaset>
+
+<qandaentry>
+
+<question>
+<para>
+誰でもコマンドメールが使える
+</para>
+</question>
+
+<answer>
+<para>
+<screen>
+command_mail_restrictions = permit_anyone
+</screen>
+</para>
+</answer>
+
+</qandaentry>
+
+
+<qandaentry>
+
+<question>
+<para>
+システムアカウントを除き誰でもコマンドメールが使える
+</para>
+</question>
+
+<answer>
+<para>
+<screen>
+command_mail_restrictions = reject_system_accounts
+ permit_anyone
+</screen>
+</para>
+</answer>
+
+</qandaentry>
+
+
+<qandaentry>
+
+<question>
+<para>
+コマンドメールを誰も使えないようにする
+</para>
+</question>
+
+<answer>
+<para>
+<screen>
+command_mail_restrictions = reject
+</screen>
+</para>
+
+<para>
+これ以外にも方法があります。くわしくは
+<link linkend="config.command.rejectall">
+<xref linkend="config.command.rejectall">
+</link>
+を参照して下さい。
+</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
+</sect2>
+
</sect1>
diff --git a/fml/doc/ja/tutorial/customize/post_check_article_thread.sgml b/fml/doc/ja/tutorial/customize/post_check_article_thread.sgml
index 5b86c60a..1fa88df4 100644
--- a/fml/doc/ja/tutorial/customize/post_check_article_thread.sgml
+++ b/fml/doc/ja/tutorial/customize/post_check_article_thread.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: post_check_article_thread.sgml,v 1.2 2004/11/14 12:04:58 fukachan Exp $
+ $FML: post_check_article_thread.sgml,v 1.3 2005/06/25 14:12:52 fukachan Exp $
-->
@@ -36,9 +36,21 @@
<sect2>
<title>
- 設定例
+ レシピ
</title>
+<qandaset>
+
+<qandaentry>
+
+<question>
+<para>
+フォローする場合なら誰でも投稿可能なML
+</para>
+</question>
+
+<answer>
+
<para>
設定例は次のようになります。
check_article_thread が、このオプションです。
@@ -52,6 +64,12 @@ article_post_restrictions = reject_system_special_accounts
利用したい場合は、明示的に article_post_restrictions を変更して下さい。
</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
</sect2>
@@ -110,9 +128,20 @@ $article_post_article_thread_lifetime という変数で制御できるようにして
<sect2>
<title>
- 応用例: 特定少数の人だけがスレッドをたてられるML
+ レシピ
</title>
+<qandaset>
+<qandaentry>
+
+<question>
+<para>
+特定少数の人だけがスレッドをたてられるML
+</para>
+</question>
+
+<answer>
+
<para>
<screen>
member_maps = $tmp_dir/members-thread-init
@@ -157,6 +186,12 @@ article_post_restrictions = reject_system_special_accounts
</screen>
</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
</sect2>
diff --git a/fml/doc/ja/tutorial/customize/post_check_pgp_signature.sgml b/fml/doc/ja/tutorial/customize/post_check_pgp_signature.sgml
index 1e73d1d2..652e30b3 100644
--- a/fml/doc/ja/tutorial/customize/post_check_pgp_signature.sgml
+++ b/fml/doc/ja/tutorial/customize/post_check_pgp_signature.sgml
@@ -1,5 +1,5 @@
<!--
- $FML: post_check_pgp_signature.sgml,v 1.1 2005/06/05 09:20:22 fukachan Exp $
+ $FML: post_check_pgp_signature.sgml,v 1.2 2005/06/25 15:11:29 fukachan Exp $
-->
@@ -19,9 +19,20 @@ OS 附属のパッケージシステムを使えないとしんどいです。
<sect2>
<title>
- 設定例
+ レシピ
</title>
+<qandaset>
+<qandaentry>
+
+<question>
+<para>
+PGP/GPG の電子署名で投稿制限をするML
+</para>
+</question>
+
+<answer>
+
<para>
設定例は次のようになります。
check_pgp_signature が、このオプションです。
@@ -35,6 +46,12 @@ article_post_restrictions = reject_system_special_accounts
利用したい場合は、明示的に article_post_restrictions を変更して下さい。
</para>
+</answer>
+
+</qandaentry>
+
+</qandaset>
+
</sect2>