summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-03-17 15:41:38 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-03-17 15:41:38 +0000
commitac8facb428db8689e4c063cb424e80b0ee9ee31a (patch)
tree6fe02963011d607f1a2f486598a55553c75b304a
parent51eab232e9c4c4508d227fc530cc5feca897742b (diff)
downloaddrakwizard-ac8facb428db8689e4c063cb424e80b0ee9ee31a.tar
drakwizard-ac8facb428db8689e4c063cb424e80b0ee9ee31a.tar.gz
drakwizard-ac8facb428db8689e4c063cb424e80b0ee9ee31a.tar.bz2
drakwizard-ac8facb428db8689e4c063cb424e80b0ee9ee31a.tar.xz
drakwizard-ac8facb428db8689e4c063cb424e80b0ee9ee31a.zip
fix missing concatenation
-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 df02349d..5a0f49fc 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -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.") 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."),
+ 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\n" . 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();
},