diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-08-08 08:59:36 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-08-08 08:59:36 +0000 |
commit | 4a8dc2015b285ed18c186ae274ccb227bfe57782 (patch) | |
tree | 325c072849e5967b574aee5941c6836c48f65ed0 | |
parent | bc3b3944943492ecebeacb240d6a6f153cd8efe5 (diff) | |
download | drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar.gz drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar.bz2 drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar.xz drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.zip |
typo fix (thx berthy)
-rwxr-xr-x | postfix_wizard/Postfix.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm index 9cd137f5..a04cdd15 100755 --- a/postfix_wizard/Postfix.pm +++ b/postfix_wizard/Postfix.pm @@ -216,7 +216,7 @@ $o->{pages} = { { label => N('my destination:'), val => \$o->{var}{wiz_mydestination}, help => N('The list of domains that are delivered via the $local_transport mail delivery transport. ie: $myhostname, localhost.$mydomain, /etc/postfix/destinations') }, { label => N('my networks:'), val => \$o->{var}{wiz_mynetworks}, help => N('The list of trusted SMTP clients. ie: 127.0.0.0/32, 192.168.1.0/24') }, ], - complete => sub { if (!$o->{var}{wiz_mynetworks}) { $::in->ask_warn(N('Error'), N('This is the list of trusted SMTP clients. For securty reason, please provide one. ie: 127.0.0.0/32, 192.168.1.0/24')); return 1; } else { return 0; }; }, + complete => sub { if (!$o->{var}{wiz_mynetworks}) { $::in->ask_warn(N('Error'), N('This is the list of trusted SMTP clients. For security reason, please provide one. ie: 127.0.0.0/32, 192.168.1.0/24')); return 1; } else { return 0; }; }, post => sub { if ($o->{var}{wiz_type} == 1) { return 'summary_main' ; |