Version: 0.7, by Dream
Developer Last Online: Sep 2010
Category: Administrative and Maintenance Tools -
Version: 3.6.8
Rating:
Released: 08-05-2006
Last Update: Never
Installs: 1657
Re-useable Code Additional Files
No support by the author.
This will let you read your member's private messages.
Features:
- List PMs separated by sent/received given a username or id
- List all users with PMs
- Search PMs by "exact text", "all words" and "at least one of the words"
- List the latest 100 PMs sent
Installation:
Upload "read_pms.php" to your admincp folder and "cpnav_rpm.xml" to your includes/xml folder. Do not import the xml, upload it!!!
Usage:
On your admin control panel, under the "User" menu theres a link to the Read PMs mod. Only Super Administrators can use it.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Considering its going to there email
I highly doubt it
Unless every email sent out from the site is saved somewhere as a draft
I wonder if theres a way to tell Vbulletin to send a carbon copy of every email that gets sent through Vbulletin to a specific email address. That would probably work ok.
By the way what the heck is the difference between a super admin and a normal admin?
I wasnt even aware that there was a super admin... lol
Doug
A normal admin can't control other admins powers and such and a few more tweaks to it
Its just like a add-on of some permissions/powers
Not like a big jump from smod to admin
I wonder if theres a way to tell Vbulletin to send a carbon copy of every email that gets sent through Vbulletin to a specific email address. That would probably work ok.
Doug
You could maybe request that in the request forum and see what people say
Or make sure it gets done by making a $ Service Request
dcpaq2, if you want to save the outgoing emails, you can go to:
AdminCP>vBulletin Options>Error Handling & Logging>Log Emails to a File
and enter the path to the file you want
By the way what the heck is the difference between a super admin and a normal admin?
I wasnt even aware that there was a super admin... lol
Doug
Superadmin is the user defined in your config.php as the person able to admin the whole site including other admin.
If you want (as I do) all admin users to be able to read PMs, edit read_pms.php and replace
PHP Code:
if (!in_array($vbulletin->userinfo['userid'], preg_split('#\s*,\s*#s', $vbulletin->config['SpecialUsers']['superadministrators'], -1, PREG_SPLIT_NO_EMPTY)) ) { rpm_print_stop_back("You don't have permission to access this page."); }
with
PHP Code:
if(!$vbulletin->userinfo['usergroupid'] == $vbulletin->options['adminid']) { rpm_print_stop_back("You don't have permission to access this page."); }