<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Module: Bulk PM</title>
        <description> Folks,

I needed group PM functionality for 5.2, so I took Brian &amp;amp; Maurice&amp;#039;s 5.1 version of bulk PM, upgraded it to 5.2, and added the ability to send PM&amp;#039;s to a group.

Here&amp;#039;s a quick feature list:
- Only available to admins - normal users can&amp;#039;t take advantage of these bulk lists
- You can send to &amp;quot;ALL&amp;quot;, or to a specific group
- You can append multiple groups together - select a group, click the &amp;quot;Add Recipient&amp;quot; button (which expands the group list to actual users), then select another

Did I mention how much I love Phorum?  I don&amp;#039;t know any other tool where I could have solved my problem so easily.

Anyhow, give it a whirl, and let&amp;#039;s see if it works for you.

Thanks,
Sp</description>
        <link>https://www.phorum.org/support/read.php?62,138004,138004#msg-138004</link>
        <lastBuildDate>Tue, 08 Sep 2026 10:09:33 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,155455#msg-155455</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,155455#msg-155455</link>
            <description><![CDATA[ no others, but i will write a small test module to hook on pm_read and dump the $message array into my database test-table  (returning the data unchanged back to phorumscript). Seems a nice way to intercept phorum values, without messing with the script itself.]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 01 Oct 2014 09:28:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,155450#msg-155450</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,155450#msg-155450</link>
            <description><![CDATA[ Which other modules changing pm behaviour are you using?]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 29 Sep 2014 15:00:15 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,155449#msg-155449</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,155449#msg-155449</link>
            <description><![CDATA[ [code=&quot;php&quot;]<br />
// pm.php line 1010<br />
<br />
// We do not want to show a recipient list if there are<br />
// a lot of recipients.<br />
$message[&quot;show_recipient_list&quot;] = ($message[&quot;recipient_count&quot;]&lt;10);<br />
[/code]<br />
<br />
It seems the developers already have tought about too many recipients :)<br />
but it does not work in our case, because of showing 2000+ recipients?? (We use the bulk pm module)<br />
<br />
Anyone any idea?]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 29 Sep 2014 13:36:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,155448#msg-155448</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,155448#msg-155448</link>
            <description><![CDATA[ One problem: sending to ALL means the recepient sees all usernames in the head of message, in our case 2000+.......<br />
<br />
I will try to detect amount of recipients and if too many dont show them,but instead replace it with some text like: * a lot of others, to much to show *]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 29 Sep 2014 13:22:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,152781#msg-152781</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,152781#msg-152781</link>
            <description><![CDATA[ Answered my own question!  Did a little digging in the Phorum API Library.  (a very extensively documented place you have here!)<br />
<br />
If you change every occurrence of  $PHORUM[&quot;user&quot;][&quot;admin&quot;]   to  (phorum_api_user_check_group_access( 1, 1, 0)) it will now check if the currently logged on user is in group.id 1.  The second integer parameter is the group.id.  I&#039;m not sure if there is a version of this that uses group text names or not.  You&#039;ll have to dive into the MySQL browser and see what the group.id is that you want to grant Bulk_PM access to.]]></description>
            <dc:creator>agentabstract</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 11 Dec 2012 15:13:57 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,152779#msg-152779</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,152779#msg-152779</link>
            <description><![CDATA[ I&#039;m wondering along the same lines if I can change it to check that your are in a bulk_pm group?  So I can make it so certain users can bulk_pm without making them admins.  I imagine it would just be a change to the &quot;if(phorum_page==&quot;pm&quot; &amp;&amp; $PHORUM[&quot;user&quot;][&quot;admin&quot;]&quot; statement, but I&#039;m a little confused as to how Phorum checks groups in an if statement.]]></description>
            <dc:creator>agentabstract</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 11 Dec 2012 14:23:28 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,150537#msg-150537</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,150537#msg-150537</link>
            <description><![CDATA[ Thank you,<br />
i will try it out in the coming week.<br />
i will let you knoe my results then]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sun, 04 Dec 2011 10:13:12 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,150529#msg-150529</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,150529#msg-150529</link>
            <description><![CDATA[ Terradon,<br />
<br />
It should be possible to do what you want, if you make a few changes to the plugin.<br />
<br />
First, you&#039;ll want to remove:<br />
- the &quot;ALL&quot; code from line 15-22 and line 48-52<br />
- the admin checks on lines 25 and 47<br />
- Put in a line of code right after line 56 where you check if the current user is a member of the group before adding it as an option.  <br />
<br />
You&#039;ll see the phorum_db_get_group_members() function already in use, you might use that, unless there&#039;s another function that checks whether a given member belongs to a given group.]]></description>
            <dc:creator>Sean Phelan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 03 Dec 2011 11:00:06 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,150528#msg-150528</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,150528#msg-150528</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Sean Phelan</strong><br />
Only available to admins</div></blockquote>
<br />
I need the possibility for all users, but just restricted to their own group(s).<br />
Is this possible?]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sat, 03 Dec 2011 10:33:13 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,138009#msg-138009</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,138009#msg-138009</link>
            <description><![CDATA[ Glad to help ... this is my first published module.  <br />
<br />
Each time I mess around with Phorum&#039;s code, I get a bit more confident.  I love how simple the plugins can be.]]></description>
            <dc:creator>Sean Phelan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 29 Apr 2009 18:39:17 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,138007#msg-138007</guid>
            <title>Re: Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,138007#msg-138007</link>
            <description><![CDATA[ Thanks for the 5.2 port and the new features!]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 29 Apr 2009 18:18:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,138004,138004#msg-138004</guid>
            <title>Module: Bulk PM</title>
            <link>https://www.phorum.org/support/read.php?62,138004,138004#msg-138004</link>
            <description><![CDATA[ Folks,<br />
<br />
I needed group PM functionality for 5.2, so I took Brian &amp; Maurice&#039;s 5.1 version of bulk PM, upgraded it to 5.2, and added the ability to send PM&#039;s to a group.<br />
<br />
Here&#039;s a quick feature list:<br />
- Only available to admins - normal users can&#039;t take advantage of these bulk lists<br />
- You can send to &quot;ALL&quot;, or to a specific group<br />
- You can append multiple groups together - select a group, click the &quot;Add Recipient&quot; button (which expands the group list to actual users), then select another<br />
<br />
Did I mention how much I love Phorum?  I don&#039;t know any other tool where I could have solved my problem so easily.<br />
<br />
Anyhow, give it a whirl, and let&#039;s see if it works for you.<br />
<br />
Thanks,<br />
Sp]]></description>
            <dc:creator>Sean Phelan</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 29 Apr 2009 16:40:16 -0500</pubDate>
        </item>
    </channel>
</rss>
