summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-11-29 07:23:37 +0000
committerfukachan <fukachan>2003-11-29 07:23:37 +0000
commit2fd5b2b1baf9d9355ae7615831209c8ade5df4da (patch)
treef190e859cdba7460e236a9c29b63f76f2fffa12c /fml
parentc66f91a7f612cf5f216f247af43af461ae95a08c (diff)
downloadfml8-2fd5b2b1baf9d9355ae7615831209c8ade5df4da.tar.gz
fml8-2fd5b2b1baf9d9355ae7615831209c8ade5df4da.tar.bz2
fml8-2fd5b2b1baf9d9355ae7615831209c8ade5df4da.zip
s/x_ml_name/outgoing_mail_header_x_ml_name/g;
Diffstat (limited to 'fml')
-rw-r--r--fml/etc/src/config.cf.en/header.cf2
-rw-r--r--fml/etc/src/config.cf.ja/header.cf2
-rw-r--r--fml/lib/FML/Header.pm6
3 files changed, 5 insertions, 5 deletions
diff --git a/fml/etc/src/config.cf.en/header.cf b/fml/etc/src/config.cf.en/header.cf
index 0587a2a9..35d66acc 100644
--- a/fml/etc/src/config.cf.en/header.cf
+++ b/fml/etc/src/config.cf.en/header.cf
@@ -80,4 +80,4 @@ article_subject_tag = [$ml_name:%05d]
# History:
# Value:
# Examples: elena
-x_ml_name = $ml_name
+outgoing_mail_header_x_ml_name = $ml_name
diff --git a/fml/etc/src/config.cf.ja/header.cf b/fml/etc/src/config.cf.ja/header.cf
index a9c68302..9dc2cd4e 100644
--- a/fml/etc/src/config.cf.ja/header.cf
+++ b/fml/etc/src/config.cf.ja/header.cf
@@ -83,4 +83,4 @@ article_subject_tag = [$ml_name:%05d]
# History:
# Value:
# Examples: elena
-x_ml_name = $ml_name
+outgoing_mail_header_x_ml_name = $ml_name
diff --git a/fml/lib/FML/Header.pm b/fml/lib/FML/Header.pm
index 884c0475..4c4848ad 100644
--- a/fml/lib/FML/Header.pm
+++ b/fml/lib/FML/Header.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Header.pm,v 1.63 2003/08/23 14:37:58 fukachan Exp $
+# $FML: Header.pm,v 1.64 2003/09/19 13:30:33 tmu Exp $
#
package FML::Header;
@@ -220,7 +220,7 @@ add X-ML-Count:
sub add_fml_ml_name
{
my ($header, $config, $args) = @_;
- $header->add('X-ML-Name', $config->{ x_ml_name });
+ $header->add('X-ML-Name', $config->{ outgoing_mail_header_x_ml_name });
}
@@ -373,7 +373,7 @@ sub add_x_sequence
{
my ($header, $config, $args) = @_;
- $header->add('X-Sequence', "$config->{ x_ml_name } $args->{ id }");
+ $header->add('X-Sequence', "$config->{ outgoing_mail_header_x_ml_name } $args->{ id }");
}