summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-12-28 13:23:16 +0000
committerfukachan <fukachan>2003-12-28 13:23:16 +0000
commitdd2095e7346b99e4b2b7590a8520c7e2076a8a80 (patch)
tree0593e20b7463249010ca44eaff593bc2e564bb7e /fml/lib/FML/Process
parent1c03a55a289e7a2b1cab369ed4baa78ed50e04e6 (diff)
downloadfml8-dd2095e7346b99e4b2b7590a8520c7e2076a8a80.tar.gz
fml8-dd2095e7346b99e4b2b7590a8520c7e2076a8a80.tar.bz2
fml8-dd2095e7346b99e4b2b7590a8520c7e2076a8a80.zip
clean up class hierarchy.
o FML::HomeDir::Prefix -> FML::ML::HomePrefix; o FML::MTAControl -> FML::MTA::Control o move main codes in newml and rmml to FML::ML::Control class.
Diffstat (limited to 'fml/lib/FML/Process')
-rw-r--r--fml/lib/FML/Process/Addr.pm6
-rw-r--r--fml/lib/FML/Process/Alias.pm6
2 files changed, 6 insertions, 6 deletions
diff --git a/fml/lib/FML/Process/Addr.pm b/fml/lib/FML/Process/Addr.pm
index c68a6c5a..6a5a44a1 100644
--- a/fml/lib/FML/Process/Addr.pm
+++ b/fml/lib/FML/Process/Addr.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Addr.pm,v 1.11 2003/08/29 15:34:06 fukachan Exp $
+# $FML: Addr.pm,v 1.12 2003/12/24 14:29:35 fukachan Exp $
#
package FML::Process::Addr;
@@ -218,8 +218,8 @@ sub _fmladdr
my $options = $curproc->command_line_options();
my $mode = $options->{ n } ? 'fmlonly' : 'all';
- use FML::MTAControl;
- my $mta = new FML::MTAControl;
+ use FML::MTA::Control;
+ my $mta = new FML::MTA::Control;
my $aliases = $mta->get_aliases_as_hash_ref($curproc, {}, {
mta_type => 'postfix',
mode => $mode,
diff --git a/fml/lib/FML/Process/Alias.pm b/fml/lib/FML/Process/Alias.pm
index 13ea9f04..6ee2623b 100644
--- a/fml/lib/FML/Process/Alias.pm
+++ b/fml/lib/FML/Process/Alias.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Alias.pm,v 1.12 2003/08/29 15:34:06 fukachan Exp $
+# $FML: Alias.pm,v 1.13 2003/12/24 14:29:35 fukachan Exp $
#
package FML::Process::Alias;
@@ -218,8 +218,8 @@ sub _fmlalias
my $options = $curproc->command_line_options();
my $mode = $options->{ n } ? 'fmlonly' : 'all';
- use FML::MTAControl;
- my $mta = new FML::MTAControl;
+ use FML::MTA::Control;
+ my $mta = new FML::MTA::Control;
my $aliases = $mta->get_aliases_as_hash_ref($curproc, {}, {
mta_type => 'postfix',
mode => $mode,