- Added feature to monitor individual forums by different recipients. This is useful if you don't want to monitor all forums or if you want to let moderators monitor their forums. See newpost2mail.config.php for details about how to do that.
- Added new configuration switch $n2m_MAILTO_BOARDCONTACT. If this is set to 1 an email to the board contact address is sent on every new post. This is the default setting.
- Optimized encoding of subject line for supporting international characters. We now use the phpBB function mail_encode() for that.
// CONFIGURING RECIPIENTS FOR INDIVIDUAL FORUMS:
//
// If you want to send mails to indivdiual recipients depending on the forum, this
// can be configured here. This may be useful if you do not want to monitor all
// forums or if you have different moderators for your forums and all or some of them
// should receive only mails for their forum(s).
//
// You need the numerical forum ID for that, which can be found in the URL of the
// forum in question. Just open a forum and look at its URL. You'll get something
// like http://your-forum.com/viewtopic.php?f=18&t=789
// In the example above we have "f=18" which means the forum ID is 18
//
// Now we add $n2m_MONITOR_FORUM[ID][] = "[email protected]" for each forum and recipent.
//
// If you want to have mails for forum ID 3 to [email protected] and
// [email protected] and mails for forum ID 7 to [email protected], you'll have
// to add the following lines:
//
// $n2m_MONITOR_FORUM[3][] = "[email protected]";
// $n2m_MONITOR_FORUM[3][] = "[email protected]";
// $n2m_MONITOR_FORUM[7][] = "[email protected]";
Donwload: http://henmedia.de
Stefan