summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-02-14 01:27:46 +0000
committerfukachan <fukachan>2003-02-14 01:27:46 +0000
commit6814b0cfe6c284eee9df6f116c8aad49ace432d0 (patch)
tree9f5e952f6ccd92ee266f1b3dd9958a0004336632 /fml/lib/FML/Command
parentc3c159258d9e2133ee825008bd9842d23605535c (diff)
downloadfml8-6814b0cfe6c284eee9df6f116c8aad49ace432d0.tar.gz
fml8-6814b0cfe6c284eee9df6f116c8aad49ace432d0.tar.bz2
fml8-6814b0cfe6c284eee9df6f116c8aad49ace432d0.zip
nuke todo done already
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/Admin/newml.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/FML/Command/Admin/newml.pm b/fml/lib/FML/Command/Admin/newml.pm
index a6541446..5a27127b 100644
--- a/fml/lib/FML/Command/Admin/newml.pm
+++ b/fml/lib/FML/Command/Admin/newml.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: newml.pm,v 1.60 2003/01/29 08:48:48 fukachan Exp $
+# $FML: newml.pm,v 1.61 2003/02/09 12:31:42 fukachan Exp $
#
package FML::Command::Admin::newml;
@@ -102,9 +102,10 @@ sub process
}
}
- # XXX-TODO: check /etc/paswd ?
# check the duplication of alias keys in MTA aliases
- # Example: search among all entries in postfix $alias_maps
+ # Example: search among all entries in postfix $alias_maps and /etc/passwd
+ # XXX we assume /etc/passwd exists for backword compatibility
+ # XXX on all unix plathomes.
if ($self->_is_mta_alias_maps_has_ml_entry($curproc, $params, $ml_name)) {
warn("$ml_name already exists (somewhere in MTA aliases)");
return ;
@@ -280,7 +281,6 @@ sub _is_mta_alias_maps_has_ml_entry
}
unless ($found) {
- # XXX-TODO: procmail ?
MTA:
for my $mta (@$list) {
my $obj = new FML::MTAControl;