Till Brehm
2016-02-09 13c1efb510ed983489a16e39b0e91c728c0b43d1
install/lib/installer_base.lib.php
@@ -896,6 +896,8 @@
      }
      unset($server_ini_array);
      
      $tmp = str_replace('.','\.',$conf['hostname']);
      $postconf_placeholders = array('{config_dir}' => $config_dir,
         '{vmail_mailbox_base}' => $cf['vmail_mailbox_base'],
         '{vmail_userid}' => $cf['vmail_userid'],
@@ -903,6 +905,7 @@
         '{rbl_list}' => $rbl_list,
         '{greylisting}' => $greylisting,
         '{reject_slm}' => $reject_sender_login_mismatch,
         '{myhostname}' => $tmp,
      );
      $postconf_tpl = rfsel($conf['ispconfig_install_dir'].'/server/conf-custom/install/debian_postfix.conf.master', 'tpl/debian_postfix.conf.master');
@@ -933,6 +936,27 @@
      if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman');
      exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman');
      //* 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~');