diff options
| author | tmu <tmu> | 2002-06-24 16:25:33 +0000 |
|---|---|---|
| committer | tmu <tmu> | 2002-06-24 16:25:33 +0000 |
| commit | 6179e962d806d6624bf95dba8c0b6dad70a0f6d8 (patch) | |
| tree | 4fcd68f3a05d41329f1228e9723704aa7ccc197a /fml | |
| parent | 77c2fdb9d382ea1d5add9025c420989b4b941ba7 (diff) | |
| download | fml8-6179e962d806d6624bf95dba8c0b6dad70a0f6d8.tar.gz fml8-6179e962d806d6624bf95dba8c0b6dad70a0f6d8.tar.bz2 fml8-6179e962d806d6624bf95dba8c0b6dad70a0f6d8.zip | |
postfix_alias_maps
parse , to space at postfix_alias_maps
Diffstat (limited to 'fml')
| -rw-r--r-- | fml/lib/FML/MTAControl/Postfix.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fml/lib/FML/MTAControl/Postfix.pm b/fml/lib/FML/MTAControl/Postfix.pm index 567fdf2b..b0ad53d5 100644 --- a/fml/lib/FML/MTAControl/Postfix.pm +++ b/fml/lib/FML/MTAControl/Postfix.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: Postfix.pm,v 1.2 2002/05/27 08:53:24 fukachan Exp $ +# $FML: Postfix.pm,v 1.3 2002/06/01 05:02:32 fukachan Exp $ # package FML::MTAControl::Postfix; @@ -146,6 +146,7 @@ sub postfix_alias_maps my $maps = `$prog alias_maps`; + $maps =~ s/,/ /g; $maps =~ s/\s+\w+:/ /g; $maps =~ s/^.*=\s*//; chomp $maps; |
