summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2005-08-08 08:59:36 +0000
committerAntoine Ginies <aginies@mandriva.com>2005-08-08 08:59:36 +0000
commit4a8dc2015b285ed18c186ae274ccb227bfe57782 (patch)
tree325c072849e5967b574aee5941c6836c48f65ed0
parentbc3b3944943492ecebeacb240d6a6f153cd8efe5 (diff)
downloaddrakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar
drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar.gz
drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar.bz2
drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.tar.xz
drakwizard-4a8dc2015b285ed18c186ae274ccb227bfe57782.zip
typo fix (thx berthy)
-rwxr-xr-xpostfix_wizard/Postfix.pm2
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' ;