Welcome to Egypt Forums Mark forums read | Egypt Main Page
Egypt Forums
Arabic Movies



Mods for 3.6.x Thread, vBMS : vBulletin Mail System in Mods; vBMS : vBulletin Mail System Finally, for vBulletin 3.6, there is a port from filburt1's original hack . For those ...

Short Link: http://forum.egypt.com/enforum/showthread.php?t=3654


Reply
LinkBack Thread Tools Display Modes
vBMS : vBulletin Mail System
 
 
The God Father
Developer's Avatar

Reply With Quote
 
Join Date: Jul 2008
Location: NDC
Posts: 5,425
20-09-2008, 02:29 AM
 
vBMS : vBulletin Mail System

Finally, for vBulletin 3.6, there is a port from filburt1's original hack. For those of you who aren't aware, he essentially declared it open source, and it's been a bit of a wait for someone to fix it up... I've wanted it for my site, too, so I finally sat down and just did it.

What is this?
The vBulletin Mail System is a way to give your users webmail access from your site. They can have a name@yourwebsite.com address, send and receive emails and attachments, etc. Options such as mailbox quotas, limits on numbers/types of attachments, a message trailer ("Free mail at yourwebsite.com!") at the end of each message, etc. are all available as well.

Please note: this is a pre-final version. As far as I have seen, it is working so far for me, but I have not tested it completely and thoroughly and it's very likely there'll be a number of bugs popping up. However, I have successfully been able to install this on a clean board, exchange emails regularly (including attachments), go through all the basic options/etc. without any errors popping up, so it should be fine. Still, make sure you back up your database before installing this, just due to the nature of its "beta"-ness.

To install: upload all files from the "upload" directory to your server in the proper directories. Then, navigate to admincp/vbms_install.php on your server and run the installer. It will make several template additions. If your navbar or header templates hav been modified, it will not be able to do it automatically, and you'll have to add these edits yourself.

In template navbar, find:
Code:
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
Add after:
Code:
<if condition="$show['popups']">
<td class="vbmenu_control" id="navbar_vbms">
<a href="vbms.php$session[sessionurl_q]">$vbphrase[email]</a>

<if condition="$vbms_newmessages['newcount'] > 0">
<span style="font-weight: normal; padding: 1px 1px 1px 2px; margin: 0px 3px 0px 2px; border: 1px inset" class="alt1">
<phrase 1="$vbms_newmessages[newcount]">$vbphrase[x_new]</phrase>
</span>
</if>

<script type="text/javascript">
<!--
vbmenu_register("navbar_vbms");
// -->
</script>
</td>
<else />
<td class="vbmenu_control" id="navbar_vbms">
<a href="vbms.php$session[sessionurl_q]">$vbphrase[email]</a>

<if condition="$vbms_newmessages['newcount'] > 0">
<span style="font-weight: normal; padding: 1px 1px 1px 2px; margin: 0px 3px 0px 2px; border: 1px inset" class="alt1">
<phrase 1="$vbms_newmessages[newcount]">$vbphrase[x_new]</phrase>
</span>
</if>
</td>
</if>
Find:
Code:
<!-- / header quick search form -->
</if>

<if condition="$show['member']">
Add after:
Code:
<div class="vbmenu_popup" id="navbar_vbms_menu" style="display: none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">vBulletin Mail System</td></tr>
<tr><td class="vbmenu_option"><a href="vbms.php?$session[sessionurl]">$vbphrase[navbar_inbox]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbms_new.php?$session[sessionurl]">$vbphrase[navbar_write_message]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbms_ab.php?$session[sessionurl]">$vbphrase[navbar_address_book]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbms_folders.php?$session[sessionurl]">$vbphrase[navbar_folders]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbms_filters.php?$session[sessionurl]">$vbphrase[navbar_filters]</a></td></tr>
<tr><td class="vbmenu_option"><a href="vbms_options.php?$session[sessionurl]">$vbphrase[navbar_options]</a></td></tr>
<tr><td class="vbmenu_option"><a href="faq.php?$session[sessionurl]faq=faq_vbms">$vbphrase[navbar_help]</a></td></tr>
</table>
</div>
In your ACP, there should be a new set of options in a "vBulletin Mail System" category. That set of options is your main set of management stuff, and is pretty straightforward.

Feel free to post with any bugs or questions you find, etc. I'm trying to get this working again thoroughly, for all of us.

FAQ
  • Is POP support available for my users?
    No, this is similar to a webmail system.
  • What is a catch-all email address, and how do I set it up?
    A catch-all address is an email address that any mail sent to your server that isn't picked up by another account will go to. For example, if someone sends an email to randomgibberish@yoursite.com and you do not have a "randomgibberish" account defined, it would forward to your catch-all account that you have set up, such as all@yoursite.com.
  • Can I run this if my server doesn't let me have a catch-all mail account?
    Yes, but it's not recommended. As has been suggested by a few members, you can set up one mail account to the be "catch-all" and have vBMS connect to that, then set up mail accounts for each member who wants one and have it forward to the catch-all. All this has to be set up manually with your web host, and takes a great deal of willpower and availability from the website administrator, and is thus not recommended.
  • I'm receiving the following error:
    Code:
    Fatal error: Call to undefined function: imap_open()...
    If you're getting an error similar to this, you do not have IMAP functionality available in PHP. Find your php.ini file on your server (usually /usr/local/lib/php.ini on Linux, C:\Windows\php.ini on Windows), and find the extensions section. Uncomment the line ";extension=php_imap.dll" (that is, remove the semicolon at the beginning) and restart your web server. If you don't have access to your web server to do this, contact your web host about installing IMAP support for PHP. If they won't do it, then this hack is not for you.
  • I can't connect to the mail server, with this error:
    Code:
    Warning: imap_open() [function.imap-open]: Couldn't open stream {localhost:110/pop3}INBOX in /includes/vbms_class_installer.php on line 791
    First, make sure that your port number and server information are right. Some mail servers are on non-default ports (this is common), and some you may have to connect to a different host besides localhost (this is very rare). Also, try using the "Force no-TLS connection" option in the vBMS Options in the ACP.
  • I can connect to the server just fine, but it won't get any email!
    Check the "Mail checking logs" in your ACP (under the vBulletin Mail System area). If there are no logs, then the cronjob probably isn't running. If there are logs, see if there are any errors in there. If it's checking the mail account fine and simply says there are no messages, check with a webmail to see if the catch-all account is even receiving mails. If the webmail shows that the account has mail stuck in it and vBMS isn't picking them up, but vBMS is saying it's checking the account alright and finding 0 messages, then you're likely connecting to the wrong account. By doing these steps, you should at least be able to figure out where the problem is occurring.

Attached Files
File Type: zip vbms-2007.03.15.zip (223.6 KB, 2 views)
__________________
I Love Walking In The Rain Cuz Nobody Know I'm Crying !!
 
 
 
 
Junior Member

Reply With Quote
 
Join Date: Jan 2009
Posts: 1
26-01-2009, 04:43 PM
 
Hi! Im trying to install this hack but no matter how many times im trying it always says:

Warning: imap_open() [function.imap-open]: Couldn't open stream {localhost:110/pop3}INBOX in /includes/vbms_class_installer.php on line 791

All data was checked several times

any help? thanks
 
 
 
 
Banned

Reply With Quote
 
Join Date: Mar 2009
Location: Uzbekistan
Posts: 46
11-03-2009, 10:44 AM
 
All Popular Softwares For PC and MACAll European LanguagesThe financial crisis? SAVE YOUR MONEY!We well send you a Special code and you will get a DISCOUNT of up to 30% for our all software - D33W-3333 !buy software for cheap-------------------------------------------------------------------------------------Windows XP Professional With SP2 Full Version $59.95Adobe Creative Suite 4 Master Collection $329.95Office Enterprise 2007 $79.95Windows Vista Ultimate 32-bit $79.95Adobe Photoshop CS4 Extended $119.95Adobe Creative Suite 4 Master Collection for MAC $329.95Adobe Acrobat 9 Pro Extended $99.95Office 2003 Professional (including Publisher 2003) $59.95AutoCAD 2009 32 and 64 bit $169.95Microsoft Office 2008 Standart Edition for Mac $99.95Adobe Creative Suite 4 Design Premium $259.95Adobe Photoshop CS4 Extended for MAC $119.95-------------------------------------------------------------------------------------The financial crisis? SAVE YOUR MONEY!We well send you a Special code and you will get a DISCOUNT of up to 30% for our all software - D33W-3333 !purchase oem softwareNo torrents - no claim. Read our Testimonials.
 
 
 
 
Banned

Reply With Quote
 
Join Date: Mar 2009
Location: Nepal
Posts: 6
11-03-2009, 10:51 AM
 
5 stars videos online at youtube *****
New YouTube Videos
look that i have found - playstation 3 Videos psp
ps3 sale
playstation3

Nintendo wii videos Good !
wii review
wii free game

Sun energu - solar plants and etc
solar power projects
solar power shingles

About how to play guitar - lessons !!!
learn bass guitar
guitar theory

Download to yor PC all you want !
pc downloadable
pc game preview

How to up at recession times
economic recessions
political crisis

How to download music - unlimited
that song in my head
music lyric

How to quit smoking
smoking videos
stop smoking

Wow gold
bow wow girlfriend
buy cheap wow gold

Tv on your pc !! 1000 chanels !!!
cable and satellite tv
watch satellite tv on pc

Organic food
vegetable gardening
potatoes garden

Kitchen book
breakfast cookbook
recipe cards

Woodworking sheet
metal shed
free woodworking plans

Criminal check
florida court records
criminal restitution

marriage
how to get a boy to ask you out
how to get a boy

Anime manga download
manga comic
best animes

How to sell house
statue sell house
when sell house

Learn Italian
learn italian easy
learn italian fluently

Convert car 4 electricity
car gas mpg
natural gas powered car

Hockey nhl prof
fantasy hockey
hockey reference

Women g spot how to
massage squirt
ebony squirt

Snowboarding how to
snowboarding jacket
ski snowboard

Body 6 abc
stomach lose
flab fat

Photo learning
digital photo album
photoshop 7.0

Forex How to for beginers
forex predictions
scalping forex

Golf learn fast
the golf swing
clone golf clubs

Tester in Games welcome
beta testing games
internet spped test

Tattoo world in yours hand
free tattoo design
tatoo sun

Sport bet on them !
bet on
nfl sports betting

Dog - learn how to train
guard dog
dog world

Spanish Easy ways !
spanish oxford
free spanish dictionary

Ringtones and all for mobile
free music ringtones
cell ringtones

Moneys at home
cash money
work online

Diet now best ways
diet meals
fat burners

Drums how to become a prof
drum piano
electric drum

cars auctions
car salvage title
used vehicles

Piano learn how to play
digital piano
learn piano kids

Google Adwords proffesional
keyword adsense
keyword ad

Clean yours registry !
registry location
co registration
 
 
 
 
Banned

Reply With Quote
 
Join Date: Mar 2009
Location: Uzbekistan
Posts: 46
11-03-2009, 10:59 AM
 
All Popular Softwares For PC and MACAll European LanguagesThe financial crisis? SAVE YOUR MONEY!We well send you a Special code and you will get a DISCOUNT of up to 30% for our all software - D33W-3333 !buy office 2003 software-------------------------------------------------------------------------------------Windows XP Professional With SP2 Full Version $59.95Adobe Creative Suite 4 Master Collection $329.95Office Enterprise 2007 $79.95Windows Vista Ultimate 32-bit $79.95Adobe Photoshop CS4 Extended $119.95Adobe Creative Suite 4 Master Collection for MAC $329.95Adobe Acrobat 9 Pro Extended $99.95Office 2003 Professional (including Publisher 2003) $59.95AutoCAD 2009 32 and 64 bit $169.95Microsoft Office 2008 Standart Edition for Mac $99.95Adobe Creative Suite 4 Design Premium $259.95Adobe Photoshop CS4 Extended for MAC $119.95-------------------------------------------------------------------------------------The financial crisis? SAVE YOUR MONEY!We well send you a Special code and you will get a DISCOUNT of up to 30% for our all software - D33W-3333 !cheap computer softwareNo torrents - no claim. Read our Testimonials.
 
 
 
Reply

Mods for 3.6.x Thread, vBMS : vBulletin Mail System in Mods; vBMS : vBulletin Mail System Finally, for vBulletin 3.6, there is a port from filburt1's original hack . For those ...

Short Link: http://forum.egypt.com/enforum/showthread.php?t=3654


Bookmarks

Tags
mail, system, vbms, vbulletin


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Incredi-Mail NOTIFIERS Developer Software and Programs 1 11-03-2009 11:01 AM
Mail PassView Developer Software and Programs 5 11-03-2009 10:47 AM
vBArmy - vBulletin Army System Developer Mods for 3.6.x 0 30-10-2008 04:25 AM
vBArmy - vBulletin Army System Developer Mods for 3.6.x 0 20-09-2008 02:56 AM
Building a Scalable High-Availability E-Mail System with Active Directory and More hamo81 Articles 0 20-06-2008 12:26 AM