summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-03-17 15:04:01 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-03-17 15:04:01 +0000
commit661bfa1d6dd71886427fbf90d580fb1f3327bfa4 (patch)
tree11b76be9a4d71ba79db7fcd3feaa86a6ae59142d
parent2333da9d52aa2c9f6fe0d6293359930a0959fe7d (diff)
downloaddrakwizard-661bfa1d6dd71886427fbf90d580fb1f3327bfa4.tar
drakwizard-661bfa1d6dd71886427fbf90d580fb1f3327bfa4.tar.gz
drakwizard-661bfa1d6dd71886427fbf90d580fb1f3327bfa4.tar.bz2
drakwizard-661bfa1d6dd71886427fbf90d580fb1f3327bfa4.tar.xz
drakwizard-661bfa1d6dd71886427fbf90d580fb1f3327bfa4.zip
add info
-rwxr-xr-xpostfix_wizard/Postfix.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm
index 4e268057..df02349d 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -46,7 +46,7 @@ my $o = {
check_sendmail();
my $t = any { /$wiz_host_name/ } cat_("/etc/hosts");
if ($t == 0) {
- return 0, N("Error, can't find your hostname in /etc/hosts. Exiting.")
+ return 0, N("Error, can't find your hostname in /etc/hosts. Exiting. Please launch drakconnect and choose static IP address.")
}
1
},
@@ -79,7 +79,7 @@ $o->{pages} = {
next => 'external',
},
external => {
- name => N("Outgoing mail address") . "\n\n" . N("You can select the kind of address that outgoing mail will show in the \"From:\" and \"Reply-to\" field.") . "\n\n" . N("This should be chosen consistently with the address you use for incoming mail."),
+ name => N("Outgoing mail address") . "\n\n" . N("You can select the kind of address that outgoing mail will show in the \"From:\" and \"Reply-to\" field.") . "\n\n" . N("This should be chosen consistently with the address you use for incoming mail.") N("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."),
pre => sub {
$o->{var}{wiz_mail_masquerade} ||= get_mail_masquerade();
},
@@ -116,7 +116,7 @@ $o->{pages} = {
next => 'originext',
},
originext => {
- name => N("The myorigin parameter specifies the domain that locally-posted mail appears to come from") . "\n\n" . N("The default is to append myhostname which is fine for small sites."),
+ name => N("The myorigin parameter specifies the domain that locally-posted mail appears to come from.") . "\n\n" . N("The default is to append myhostname which is fine for small sites."),
pre => sub {
$o->{var}{wiz_myorigin} ||= get_myorigin();
},
@@ -132,9 +132,9 @@ $o->{pages} = {
summaryext => {
name => N("Configuring the external mail server") . "\n\n" . N("The wizard collected the following parameters needed to configure your external 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("Internet mail gateway"), fixed_val => \$o->{var}{wiz_ext_mail_relay} },
- { label => N("Form of the address"), fixed_val => \$o->{var}{wiz_mail_masquerade} },
- { label => N("myorigin"), fixed_val => \$o->{var}{wiz_myorigin} },
+ { label => N("Internet mail gateway:"), fixed_val => \$o->{var}{wiz_ext_mail_relay} },
+ { label => N("Form of the address:"), fixed_val => \$o->{var}{wiz_mail_masquerade} },
+ { label => N("myorigin:"), fixed_val => \$o->{var}{wiz_myorigin} },
],
post => \&do_it_external,
next => 'endext'