This is for version 4.0 + only.
vbulletin 3.0 + can be found
here
First thing you need to do is create a new template.
To do that, log into your admincp, scroll to Styles & Templates, style manager.
Select the style you want to add the new template to & click the drop down to the right of it & select "Add New Template"
Name it membermail.
Add the following in the box below & click save.
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
<title>{vb:raw vboptions.bbtitle} - {vb:raw pagetitle}</title>
{vb:raw headinclude}
{vb:raw headinclude_bottom}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div id="pagetitle">
<h1>{vb:raw pagetitle}</h1>
</div>
<h2 class="blockhead">Member Mail</h2>
<div class="blockbody">
<div class="blockrow">
<table class="tborder" cellpadding="6" cellspacing="1" border="1" width="100%" align="center">
<tr>
<td class="alt1"><center><iframe name="member_mail" marginwidth="0" allowtransparency="true" src="Change this to the URL of YOUR MAIL FOLDER" width="980" height="500" frameborder="1" style="width: 980px; height: 500px" ></iframe></center></td>
</tr>
</table>
</div>
</div>
{vb:raw footer}
</body>
</html>
Download the attached file, member_mail.php.txt
rename it member_mail.php & upload it via FTP to your forum root folder.
================================================== ===
IMPORTANT!!!:ALWAYS CREATE A BACKUP OF WHAT EVER YOU GOING TO EDIT BEFORE YOU EDIT IT!
Next, add a link to it in the navbar.
Again in the admincp/Styles & Templates/Search in templates.
Select the style you are going to edit the navbar in via the drop down.
Type in navbar in the search area, Search Titles Only, select yes, click search.
Double click the word navbar, it will open in same window.
Search for:
Code:
<li><a href="calendar.php{vb:raw session.sessionurl_q}">{vb:rawphrase calendar}</a></li>
Add below:
Code:
<li><a href="member_mail.php{vb:raw session.sessionurl_q}">Member Mail</a></li>
Click Save
Thank Lynn for
https://vborg.vbsupport.ru/showthread.php?t=228112 and follow up with her Instructions to Add your Page to the Who's Online List (WOL).