summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial/customize/autoreply.sgml
blob: 5e81e1119fae22cf5b48761692eb8bc14d925433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--
   $FML: autoreply.sgml,v 1.2 2003/01/05 08:00:59 fukachan Exp $
-->

<sect1 id="config.autoreply">
	<title>
	�����������ǥ�: ��ư�ե����������֤�������
	</title>

<para>
�����ץ�����( libexec/distribute )���¤����
/some/where/help �ե�����������֤����Ȥ�ͤ��ޤ���
�㤨�� help@fml.org �̤ͣ��ꡢ���Υ��ɥ쥹�˥᡼��������
(����򤤤蘆��:-)�إ�ץե�����������֤��Ȥ�����ΤǤ���
</para>

<para>
���ξ��� config.cf ����Ϥ��Τ褦�ˤʤ�ޤ���
<screen>
article_post_restrictions = permit_anyone
</screen>
config.cf �ե������ =cut �԰ʹߤ� hook ��񤭤ޤ���
<screen>
$distribute_run_start_hook = q{

        $curproc->reply_message( {
                type        => "text/plain; charset=iso-2022-jp",
                path        => "/some/where/help",
                filename    => "help",
                disposition => "help example",
        });

        $curproc->stop_this_process();

};
</screen>
�Ǹ��
<screen>
$curproc->stop_this_process();
</screen>
�� &fml4; �� $DO_NOTHING �ѿ��ˤ�����ޤ�����&fml8; �Ǥϥ᥽�åɤǤ���
����ǡ�����HOOK�ʹߡ�����ν�����̵�뤵���褦�ˤʤ�ޤ��� 
</para>

</sect1>