Hi dexter303.
The
"config.php" file holds the default configuration, which is overwritten with every export from ImmoTool. To make sure, that your custom configurations are not lost, you can put the mail settings into the
"load_config_default" function of the
"myconfig.php" file:
- Code: Select all
function load_config_default(&$config) {
if (defined('OPENESTATE_WRAPPER'))
$config->ContentType = null;
$config->MailFrom = 'test@test.de';
$config->MailFromName = 'Mustermann Immobilien GmbH';
$config->MailToCC = '';
$config->MailToBCC = '';
$config->MailMethod = 'mail';
$config->MailSendmailPath = '/usr/sbin/sendmail';
$config->MailSmtpHost = 'localhost';
$config->MailSmtpPort = 25;
$config->MailSmtpSecurity = '';
$config->MailSmtpAuth = false;
$config->MailSmtpAuthLogin = '';
$config->MailSmtpAuthPassword = '';
$config->MailSmtpDebug = false;
}
The
"myconfig.php" file is never overwritten by ImmoTool.