Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vB WebMail v1.3 Details »»
vB WebMail v1.3
Version: 1.00, by vB-Host.com vB-Host.com is offline
Developer Last Online: Sep 2003 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 05-11-2003 Last Update: Never Installs: 18
 
No support by the author.

I am proud to announce my first hack here! vB WebMail

Inspired by Chad777's neomail signup

My version has cosmetic changes to the template files along with php rewritten to not need a db install to add the neomail table along with forcing the member to be registered with your forum and to use the forum username. along with a confirm to the new sign up that the account is created and sending them to the page to log in.

Support will only be provided in this thread, please do not PM me or e-mail me for support. You can find a working demo here http://www.thesportsforum.net/webmail.php

requirements vB 2.x
cPanel 4.x or higher (tested on cPanel 4, 5 and 6 using bluelagoon theme)
NeoMail (you can go to www.your-domain.com/webmail/ to see if your server has neomail).

things to do:
add-on to lesane's store to buy webmail access
add-on to lasane's store to increase mailbox size
write vB webmail for HordeMail

Sites using vB WebMail include:
(feel free to PM me to add your site)
http://www.TheSportsForum.net

Please be sure to kick, click or lick the install button when downloading!

Thanks,
Slapshot Harry

note: zipfile updated, now v1.3 please redownload as this fixes a security hole in older versions

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 05-13-2003, 03:05 AM
Kurayami's Avatar
Kurayami Kurayami is offline
 
Join Date: Sep 2002
Location: California
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I recieve the same error as TheComputerGuy... and my forum domain is on a dedicated IP.
Reply With Quote
  #23  
Old 05-13-2003, 03:12 AM
vB-Host.com's Avatar
vB-Host.com vB-Host.com is offline
 
Join Date: Apr 2003
Posts: 162
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

alkatraz: to install neomail you need root access to the server, If you have cPanel you should have it as it installs as a side kick with cPanel

thecomputerguy: login to cpanel and go to your mail section, from there go to e-mail accounts and make sure the script created the account. If it is created, please let me know what version of cPanel your using and what theme.

insanctus: no, it will work with anyone using NeoMail and the cPanel Control panel. shared ip or static.
Reply With Quote
  #24  
Old 05-13-2003, 03:18 AM
vB-Host.com's Avatar
vB-Host.com vB-Host.com is offline
 
Join Date: Apr 2003
Posts: 162
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 09:05 PM Kurayami said this in Post #21
I recieve the same error as TheComputerGuy... and my forum domain is on a dedicated IP.
do the same as I told thecomputerguy above
Reply With Quote
  #25  
Old 05-13-2003, 03:28 AM
Kurayami's Avatar
Kurayami Kurayami is offline
 
Join Date: Sep 2002
Location: California
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The account I created with the script is in the list of addresses--I'm running version 6.4.0 with Blue Lagoon.
I hope this problem can be fixed, as I'd love to use this add-on.
Reply With Quote
  #26  
Old 05-13-2003, 03:34 AM
vB-Host.com's Avatar
vB-Host.com vB-Host.com is offline
 
Join Date: Apr 2003
Posts: 162
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if you go to your domain.com/webmail/ and log in using the user/pass you created... what happens?
Reply With Quote
  #27  
Old 05-13-2003, 03:37 AM
insanctus's Avatar
insanctus insanctus is offline
 
Join Date: Feb 2003
Location: Michigan
Posts: 582
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok in my webmail join I have
require('./global.php');
$templatesused = "neowebmail_join";
if ($submit){
$host = "www.sanguinox.com"; //change to www.yourdomain.com including www.
$domain = "sanguinox.com"; //change to yourdomain.com with NO www

$socket = fsockopen($host,2082); //don't touch this setting
$cpaneluser = "realname"; //your cpanel login name goes here
$cpanelpass = "realpassy"; //your cpanel password goes here
$authstr = "$cpaneluser:$cpanelpass"; //don't touch this setting
$pass = base64_encode($authstr); //don't touch this setting


$in = "GET /frontend/cpstartup/mail/doaddpop.html?email=$email&domain=$domain&password =$password&quota=$quota HTTP/1.0\r\nAuthorization: Basic $pass \r\n";

fputs($socket,$in);
fclose( $socket );
header("Location: webmailcreated.php"); /* after sign up this redirects to login page telling them account has been created */

}
else {
eval("dooutput(\"".gettemplate("neowebmail_join"). "\");");

}
?>


Now if i just use html (did as a check) with
PHP Code:
http://sanguinox.com:2082/frontend/cpstartup/mail/doaddpop.html?email=testname&domain=sanguinox.com&password=testpassy 
It works... but with your script it does not... Any ideas.? it just keeps kickin me back to the signup.
Reply With Quote
  #28  
Old 05-13-2003, 03:38 AM
Kurayami's Avatar
Kurayami Kurayami is offline
 
Join Date: Sep 2002
Location: California
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmmm... it logs in without any problem whatsoever.
Reply With Quote
  #29  
Old 05-13-2003, 03:51 AM
vB-Host.com's Avatar
vB-Host.com vB-Host.com is offline
 
Join Date: Apr 2003
Posts: 162
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 09:37 PM insanctus said this in Post #26

It works... but with your script it does not... Any ideas.? it just keeps kickin me back to the signup. [/B]
It is your theme. I am having the same problem with the xcontroller theme I give most of my hosting clients as it is very clean and includes fantastico. With xcontroller I couldn't even get it to configure the account. Over 25 people on my forum are already using this witthout issue. I have only tested it on blue lagoon. contact your hosting provider and ask them to change you to blue lagoon. It is a free theme that comes standard with WHM/cPanel
Reply With Quote
  #30  
Old 05-13-2003, 03:52 AM
vB-Host.com's Avatar
vB-Host.com vB-Host.com is offline
 
Join Date: Apr 2003
Posts: 162
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 09:38 PM Kurayami said this in Post #27
Hmmm... it logs in without any problem whatsoever.
url to my webmail.php please
Reply With Quote
  #31  
Old 05-13-2003, 04:36 AM
insanctus's Avatar
insanctus insanctus is offline
 
Join Date: Feb 2003
Location: Michigan
Posts: 582
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm there is nothing i can config to change that?

My host is very um..... bad lmao... they have the worst service I have seen and will take them weeks to change me (if at all).
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 06:56 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05936 seconds
  • Memory Usage 2,314KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete