summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-03-12 10:29:32 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-03-12 10:29:32 +0000
commit73005846b52575021bf318dc81bb44bd98654348 (patch)
tree9a5bb7ea94228ae32314b683865e1cc4f80ce791
parent2dd8553a832c112da9a3e0f81cbadfa1a5034e4b (diff)
downloaddrakwizard-73005846b52575021bf318dc81bb44bd98654348.tar
drakwizard-73005846b52575021bf318dc81bb44bd98654348.tar.gz
drakwizard-73005846b52575021bf318dc81bb44bd98654348.tar.bz2
drakwizard-73005846b52575021bf318dc81bb44bd98654348.tar.xz
drakwizard-73005846b52575021bf318dc81bb44bd98654348.zip
add localhost in inet_interface
-rwxr-xr-xpostfix_wizard/Postfix.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm
index 2171c596..d7cd17ee 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -230,7 +230,7 @@ sub do_it_internal {
my $w = $in->wait_message(N("Postfix Server"), N("Configuring your Postfix server....."));
save_config();
my @conf = ("myhostname = $wiz_host_name",
- 'inet_interfaces = $myhostname',
+ 'inet_interfaces = $myhostname,localhost',
'mydestination = $myhostname, localhost.$mydomain',
'alias_maps = hash:/etc/postfix/aliases',
'alias_database = hash:/etc/postfix/aliases',
@@ -259,7 +259,7 @@ sub do_it_external {
save_config();
my @conf = ("myhostname = $wiz_host_name",
- 'inet_interfaces = $myhostname',
+ 'inet_interfaces = $myhostname,localhost',
'mydestination = $myhostname, localhost.$mydomain',
'alias_maps = hash:/etc/postfix/aliases',
'alias_database = hash:/etc/postfix/aliases',