diff options
| author | fukachan <fukachan> | 2006-03-20 09:31:34 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2006-03-20 09:31:34 +0000 |
| commit | ee06332ac474ce11f83d0b20f8fba7bd923f74f2 (patch) | |
| tree | 4ebb5059a26ced8379bd729e880f99ea38d596f0 /fml/doc/en/tutorial | |
| parent | 030f923ab8a9e2b07e842a7b3de363691a2192b8 (diff) | |
| download | fml8-ee06332ac474ce11f83d0b20f8fba7bd923f74f2.tar.gz fml8-ee06332ac474ce11f83d0b20f8fba7bd923f74f2.tar.bz2 fml8-ee06332ac474ce11f83d0b20f8fba7bd923f74f2.zip | |
add subject tag like [YYYYMMDD] string.
Diffstat (limited to 'fml/doc/en/tutorial')
| -rw-r--r-- | fml/doc/en/tutorial/customize/recipes.header.sgml | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/fml/doc/en/tutorial/customize/recipes.header.sgml b/fml/doc/en/tutorial/customize/recipes.header.sgml index 5f756ba6..0be49b05 100644 --- a/fml/doc/en/tutorial/customize/recipes.header.sgml +++ b/fml/doc/en/tutorial/customize/recipes.header.sgml @@ -1,5 +1,5 @@ <!-- - $FML: recipes.header.sgml,v 1.3 2006/01/14 06:04:48 fukachan Exp $ + $FML: recipes.header.sgml,v 1.4 2006/01/19 03:59:51 fukachan Exp $ --> <qandaset> @@ -123,6 +123,34 @@ You need not use this setting in almost cases. <question> <para> +add subject tag like [YYYYMMDD] string. +</para> +</question> + +<answer> +<para> +To add a subject tag like YYYYMMDD (20060101), date format, +you can use the following hook. +<screen> +$distribute_verify_request_start_hook = q{ + + use POSIX; + my $yyyymmdd = strftime("[%Y%m%d]", localtime); + $config->set('article_subject_tag', $yyyymmdd); + +}; +</screen> +You can use several format by editing strftime(3) part. +</para> +</answer> + +</qandaentry> + + +<qandaentry> + +<question> +<para> Enforece Reply-To: as address for post. </para> </question> |
