From: Roland Mas Date: Thu, 29 Jan 2009 17:28:55 +0000 (+0000) Subject: Add missing password for the gforge_mta database connection X-Git-Tag: v4_7~75 X-Git-Url: https://scm.fusionforge.org/anonscm/gitweb?p=fusionforge%2Ffusionforge.git;a=commitdiff_plain;h=4815c80b5028b10b80a6f5f66042c1216df970d2;hp=730766e58cae8b2e7a1aeb30f401de78fb8181a9 Add missing password for the gforge_mta database connection --- diff --git a/gforge/deb-specific/install-exim4.sh b/gforge/deb-specific/install-exim4.sh index ad8f04b8cf..f75ded13ec 100644 --- a/gforge/deb-specific/install-exim4.sh +++ b/gforge/deb-specific/install-exim4.sh @@ -76,7 +76,7 @@ while (($l = <>) !~ /^\s*domainlist\s*local_domains/) { $seen_gf_domains = 1 if ($l =~ /\s*GFORGE_DOMAINS=/); $seen_pg_servers = 1 if ($l =~ m,hide pgsql_servers = $sys_dbhost.*/gforge_mta,); }; -print "hide pgsql_servers = $sys_dbhost/$sys_dbname/gforge_mta/\n" unless $seen_pg_servers; +print "hide pgsql_servers = $sys_dbhost/$sys_dbname/gforge_mta/gforge_mta\n" unless $seen_pg_servers; print "GFORGE_DOMAINS=$sys_users_host:$sys_lists_host\n" unless $seen_gf_domains; chomp $l; $l .= ":GFORGE_DOMAINS" unless ($l =~ /^[^#]*GFORGE_DOMAINS/);