Works with MS Exchange Server (continued) / #4602

Pre-cond:
  • PHP-Version: 5.2.0 (phpInfo)
  • streber-Version: 0.0796
  • OS environment is WinXP, MS Exchange Server (version ?)
Here the steps how to make it work.
  1. Make these entries in customize.inc.php:

  confChange('SELF_DOMAIN','ANYDOMAINNAME'); # for example abc.com

  # Note: Somehow confChange('SMTP', ...) isn't working as expected,
  # therefore I've used ini_set()

  ini_set('SMTP','address.of.your.mail.server');
                                              # Find it out for example
                                              # by checking your mail
                                              # account settings in
                                              # Outlook
  ini_set('smtp_port','25');      # Ask your sys admin

  1. Changed source code in mail.inc.php:

        ### from-address  ###
/*
        $from = __('Streber Email Notification','notifcation mail from') . " <do-not-reply@".$from_domain.">";
*/
        $from = "do-not-reply@".$from_domain;


Now it should send out the e-mails. Have a look in the errors.log.php file which could help further in solving problems.