summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial/customize
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 /fml/doc/ja/tutorial/customize
parent37f3c98d94324f4ae78d9f07cad85cc0f4c2ab95 (diff)
downloadfml8-4f71535a230117977554d3bf96bbc930cbf4ce28.tar.gz
fml8-4f71535a230117977554d3bf96bbc930cbf4ce28.tar.bz2
fml8-4f71535a230117977554d3bf96bbc930cbf4ce28.zip
recipe-ify
Diffstat (limited to 'fml/doc/ja/tutorial/customize')
-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
3 files changed, 135 insertions, 6 deletions
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>