summaryrefslogtreecommitdiffstats
path: root/postfix_wizard/Postfix.pm
diff options
context:
space:
mode:
Diffstat (limited to 'postfix_wizard/Postfix.pm')
-rwxr-xr-xpostfix_wizard/Postfix.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm
index 45c0552c..7074937c 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -177,8 +177,8 @@ $o->{pages} = {
$o->{var}{wiz_masquerade_domains} ||=$postfix->{masquerade_domains};
},
data => [
- { label => N('helo required:'), val => \$o->{var}{wiz_smtpd_helo_required}, fixed_list => \@yesorno },
- { label => N('Disable verify command:'), val => \$o->{var}{wiz_disable_vrfy_command}, fixed_list => \@yesorno },
+ { label => N('helo required:'), val => \$o->{var}{wiz_smtpd_helo_required}, list_ref => \@yesorno },
+ { label => N('Disable verify command:'), val => \$o->{var}{wiz_disable_vrfy_command}, list_ref => \@yesorno },
{ label => N('Masquerade domains'), val => \$o->{var}{wiz_masquerade_domains}, help => N('This should be chosen consistently with the address you use for incoming mail. Address masquerading is a method to hide all hosts inside a domain behind their mail gateway, and to make it appear as if the mail comes from the gateway itself, instead of from individual machines.') },
],
complete => sub {
@@ -249,8 +249,8 @@ $o->{pages} = {
summary_relay => {
name => N("Configuring your relay mail server") . "\n\n" . N("The wizard collected the following parameters needed to configure your relay mail server:") . "\n\n" . N("To accept these values, and configure your server, click the next button or use the back button to correct them."),
data => [
- { label => N('Relay host:'), fixed_val => \$o->{var}{wiz_relayhost} },
- { label => N('Relay domains:'), fixed_val => \$o->{var}{wiz_relay_domains} },
+ { label => N('Relay host:'), val_ref => \$o->{var}{wiz_relayhost} },
+ { label => N('Relay domains:'), val_ref => \$o->{var}{wiz_relay_domains} },
],
post => \&do_it_relay_server,
next => 'end'
@@ -258,9 +258,9 @@ $o->{pages} = {
summary_main => {
name => N("The wizard will now configure your Postfix mail server."),
data => [
- { label => N('inet interfaces:'), fixed_val => \$o->{var}{wiz_inet_interfaces} },
- { label => N('my destination:'), fixed_val => \$o->{var}{wiz_mydestination} },
- { label => N('my networks:'), fixed_val => \$o->{var}{wiz_mynetworks} },
+ { label => N('inet interfaces:'), val_ref => \$o->{var}{wiz_inet_interfaces} },
+ { label => N('my destination:'), val_ref => \$o->{var}{wiz_mydestination} },
+ { label => N('my networks:'), val_ref => \$o->{var}{wiz_mynetworks} },
],
post => \&do_it_main_server,
next => 'end'