summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 }");
}