Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Topic started by: mamboMan on December 12, 2006, 03:33:42 PM

Title: Email post for windows
Post by: mamboMan on December 12, 2006, 03:33:42 PM
Anybody configured: http://mods.simplemachines.org/index.php?mod=168
on a windows server ?
Title: Re: Email post for windows
Post by: mamboMan on December 12, 2006, 03:39:09 PM
I need to pipe the emails from mail server to the emailpost.php script. How's that done on a windows server ?
Title: Re: Email post for windows
Post by: tking on January 09, 2007, 03:57:55 PM
Using SMS 1.1rc1
Get the reply poted OK, but the number of posts for the board is not being updated so the notification email is not being sent.

$posterOptions = array(
      'id' => $ID_MEMBER,
      'name' => $user_settings['realName'],
      'email' => $user_settings['emailAddress'],
      'update_post_count' => $topic_info['countPosts'],
      'ip' => $user_settings['memberIP'],
   );

'update_post_count' => $topic_info['countPosts'] is getting an int(0) set as the value.
So, when createPost() is called the postcount is not being incremented.

What do I need to do to get this to work?
TNX