Marius Burkard
2016-07-10 e1ceb050e19c7574bca146a8da7047ee4ff456b5
install/dist/lib/gentoo.lib.php
@@ -135,6 +135,26 @@
      touch($config_dir.'/nested_header_checks');
      touch($config_dir.'/body_checks');
      //* Create auxillary postfix conf files
      $configfile = 'helo_access';
      if(is_file($config_dir.'/'.$configfile)) {
         copy($config_dir.'/'.$configfile, $config_dir.'/'.$configfile.'~');
         chmod($config_dir.'/'.$configfile.'~', 0400);
      }
      $content = rfsel($conf['ispconfig_install_dir'].'/server/conf-custom/install/'.$configfile.'.master', 'tpl/'.$configfile.'.master');
      $content = strtr($content, $postconf_placeholders);
      # todo: look up this server's ip addrs and loop through each
      # todo: look up domains hosted on this server and loop through each
      wf($config_dir.'/'.$configfile, $content);
      $configfile = 'blacklist_helo';
      if(is_file($config_dir.'/'.$configfile)) {
         copy($config_dir.'/'.$configfile, $config_dir.'/'.$configfile.'~');
         chmod($config_dir.'/'.$configfile.'~', 0400);
      }
      $content = rfsel($conf['ispconfig_install_dir'].'/server/conf-custom/install/'.$configfile.'.master', 'tpl/'.$configfile.'.master');
      $content = strtr($content, $postconf_placeholders);
      wf($config_dir.'/'.$configfile, $content);
      //* Make a backup copy of the main.cf file
      copy($config_dir.'/main.cf', $config_dir.'/main.cf~');
@@ -321,6 +341,10 @@
      //* dovecot-sql.conf
      $configfile = $config_dir.'/dovecot-sql.conf';
      $content = $this->get_template_file('debian_dovecot-sql.conf', true, true);
      # enable iterate_query for dovecot2
      if(version_compare($dovecot_version,2, '>=')) {
         $content = str_replace('# iterate_query', 'iterate_query', $content);
      }
      $this->write_config_file($configfile, $content);
   }
@@ -471,9 +495,6 @@
      if(!$this->db->query($query, $conf['powerdns']['database'], $conf['mysql']['ispconfig_user'], 'localhost')) {
         $this->error('Unable to create user for powerdns database Error: '.$this->db->errorMessage);
      }
      //* Reload database privelages
      $this->db->query('FLUSH PRIVILEGES;');
      //* load the powerdns databse dump
      if($conf['mysql']['admin_password'] == '') {