diff options
| author | fukachan <fukachan> | 2005-08-17 10:44:47 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2005-08-17 10:44:47 +0000 |
| commit | 435edca2693ba1905b03404935300720ee2fb28f (patch) | |
| tree | cd5fd325d8b33bed2374a550b94e6759c9018a9f | |
| parent | 26b99ce5b35b60536dc1f00d777a340c106c36bb (diff) | |
| download | fml8-435edca2693ba1905b03404935300720ee2fb28f.tar.gz fml8-435edca2693ba1905b03404935300720ee2fb28f.tar.bz2 fml8-435edca2693ba1905b03404935300720ee2fb28f.zip | |
FNF: methond naming convension.
template_files_dir_for_newml() -> newml_command_template_files_dir();
| -rw-r--r-- | fml/lib/FML/MTA/Control/Postfix.pm | 8 | ||||
| -rw-r--r-- | fml/lib/FML/MTA/Control/Procmail.pm | 4 | ||||
| -rw-r--r-- | fml/lib/FML/MTA/Control/Qmail.pm | 6 | ||||
| -rw-r--r-- | fml/lib/FML/MTA/Control/Sendmail.pm | 4 |
4 files changed, 11 insertions, 11 deletions
diff --git a/fml/lib/FML/MTA/Control/Postfix.pm b/fml/lib/FML/MTA/Control/Postfix.pm index 0aaf64ce..3c8e1042 100644 --- a/fml/lib/FML/MTA/Control/Postfix.pm +++ b/fml/lib/FML/MTA/Control/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.6 2004/07/23 15:59:07 fukachan Exp $ +# $FML: Postfix.pm,v 1.7 2005/05/26 12:22:33 fukachan Exp $ # package FML::MTA::Control::Postfix; @@ -39,7 +39,7 @@ sub postfix_install_alias { my ($self, $curproc, $params, $optargs) = @_; my $config = $curproc->config(); - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); use File::Spec; my $alias = $config->{ mail_aliases_file }; @@ -328,7 +328,7 @@ sub postfix_setup { my ($self, $curproc, $params, $optargs) = @_; my $config = $curproc->config(); - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); my $ml_home_dir = $params->{ ml_home_dir }; use File::Spec; @@ -371,7 +371,7 @@ sub _postfix_rewrite_virtual_params sub postfix_install_virtual_map { my ($self, $curproc, $params, $optargs) = @_; - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); my $config = $curproc->config(); my $ml_name = $config->{ ml_name }; my $ml_domain = $config->{ ml_domain }; diff --git a/fml/lib/FML/MTA/Control/Procmail.pm b/fml/lib/FML/MTA/Control/Procmail.pm index cbc193e9..42939ac1 100644 --- a/fml/lib/FML/MTA/Control/Procmail.pm +++ b/fml/lib/FML/MTA/Control/Procmail.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: Procmail.pm,v 1.5 2004/07/23 13:16:40 fukachan Exp $ +# $FML: Procmail.pm,v 1.6 2005/05/26 10:20:06 fukachan Exp $ # package FML::MTA::Control::Procmail; @@ -39,7 +39,7 @@ sub procmail_install_alias { my ($self, $curproc, $params, $optargs) = @_; my $config = $curproc->config(); - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); use File::Spec; my $alias = $config->{ procmail_aliases_file }; diff --git a/fml/lib/FML/MTA/Control/Qmail.pm b/fml/lib/FML/MTA/Control/Qmail.pm index b4e915d4..13d409b1 100644 --- a/fml/lib/FML/MTA/Control/Qmail.pm +++ b/fml/lib/FML/MTA/Control/Qmail.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: Qmail.pm,v 1.3 2004/01/22 15:01:02 fukachan Exp $ +# $FML: Qmail.pm,v 1.4 2004/07/23 13:16:40 fukachan Exp $ # package FML::MTA::Control::Qmail; @@ -50,7 +50,7 @@ sub qmail_remove_alias { my ($self, $curproc, $params, $optargs) = @_; my $config = $curproc->config(); - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); my $ml_home_dir = $params->{ ml_home_dir }; use File::Spec; @@ -140,7 +140,7 @@ sub qmail_setup { my ($self, $curproc, $params, $optargs) = @_; my $config = $curproc->config(); - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); my $ml_home_dir = $params->{ ml_home_dir }; use File::Spec; diff --git a/fml/lib/FML/MTA/Control/Sendmail.pm b/fml/lib/FML/MTA/Control/Sendmail.pm index a569f587..fbe88a7f 100644 --- a/fml/lib/FML/MTA/Control/Sendmail.pm +++ b/fml/lib/FML/MTA/Control/Sendmail.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: Sendmail.pm,v 1.5 2004/07/23 13:16:40 fukachan Exp $ +# $FML: Sendmail.pm,v 1.6 2005/05/26 12:23:34 fukachan Exp $ # package FML::MTA::Control::Sendmail; @@ -151,7 +151,7 @@ sub _sendmail_rewrite_virtual_params sub sendmail_install_virtual_map { my ($self, $curproc, $params, $optargs) = @_; - my $template_dir = $curproc->template_files_dir_for_newml(); + my $template_dir = $curproc->newml_command_template_files_dir(); my $config = $curproc->config(); my $ml_name = $config->{ ml_name }; my $ml_domain = $config->{ ml_domain }; |
