Anybody configured: http://mods.simplemachines.org/index.php?mod=168
on a windows server ?
I need to pipe the emails from mail server to the emailpost.php script. How's that done on a windows server ?
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