vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBulletin POP3 / IMAP Email Client for vB3 - Web-based access to POP email accounts! (https://vborg.vbsupport.ru/showthread.php?t=66247)

CH3 12-29-2005 04:37 AM

hm i tried to do some changes for the 3.5 :) but it wouldnt run :(
i couldnt login...

fusiongoddess 01-01-2006 11:21 PM

I would like to see this for 3.5.2 as well! :)

Snake 01-02-2006 07:00 AM

Hey don't you forget about me, either. :D

BMoel 01-02-2006 11:35 PM

:ermm: How exactly do I link to the email.php file? Is that through VB in the forums manager under 'link to url'?

Does this file work for VB 3.5x?

Thanks

Elfo King 01-06-2006 09:38 AM

Hi All.....but...the attachment work?
I try more time to attach any file type...but are not present on reiceved email.
U can help me ?

BMoel 01-16-2006 09:22 PM

"Upload email.php into your forums directory, link to it, and you've got an instant web-based POP3/ IMAP email interface in your forums!"

I'm new at this so pardon my question. I uploaded the email.php file to my forums directory. How exactly do I 'link' to it?

Once that is accomplished, how do I configure and execute it?

Thanks in advance for your replies.

BobbiX 01-25-2006 11:49 AM

Well, I changed most parts required for the script to run under vb 3.5.x ... I can login now, but some of the inner parts are not working yet - I'll see what I can do about that and post the modified email.php once I'm finished.

Bobbi

BMoel 01-25-2006 03:13 PM

Thanks for keeping me in the loop. I'm looking forward the seeing your progress. Again, thank you for your effort.

Guest210212002 01-25-2006 03:53 PM

If this is released for 3.5, I will be a happy guy. :D

Patria 02-06-2006 09:02 PM

Is there a vB 3.5.x release of this modification available or could anybody recommend something simliar?

Thanks in advance! :)

Erwin 02-09-2006 04:38 AM

I've ported this - it's working more or less, with 1 or 2 bugs here and there. I will post it once I work them out. In the meantime, if someone else figures out the bugs first, that's fine too. :)

tlp000999 02-12-2006 07:23 PM

Is the ported 3.5.x version available yet?

Snake 02-13-2006 12:30 PM

Have you read the post above yours yet?

Erwin 02-13-2006 10:27 PM

I'm getting some weird errors, but the hack itself works. I may post a beta version at some stage...

docvader 02-13-2006 10:41 PM

Thanks Erwin. Looking forward to it. Nice to see you back.

Snake 02-14-2006 09:02 AM

Quote:

Originally Posted by Erwin
I'm getting some weird errors, but the hack itself works. I may post a beta version at some stage...

Thanks, that's a great news for me today! :)

pete_brady 02-25-2006 06:52 PM

looking forward to getting this up and running again - was pretty popular on 3.x

Killsparer 03-03-2006 10:50 PM

Any news about the version for 3.5 ?

Roms 03-04-2006 01:38 AM

Quote:

I've ported this - it's working more or less, with 1 or 2 bugs here and there. I will post it once I work them out. In the meantime, if someone else figures out the bugs first, that's fine too.
Looking forward to getting this, it's a great hack!

Cheers :)

COBRAws 03-06-2006 02:46 PM

Quote:

Originally Posted by Erwin
I'm getting some weird errors, but the hack itself works. I may post a beta version at some stage...

I can't wait pal :D

DjTaz 03-28-2006 04:07 AM

Quote:

Originally Posted by The Prohacker
Still having trouble with no return sender with this hack.

While I'm composing the message, my user name shows up in the "From" box, like the first picture attached.

However, when I send it to my test gmail account, the message I receive is from "Unknown Sender", and the "Reply To" box is empty, like in pictures 2 and 3.

If I change to this...:
Code:

//You can allow or disallow users from changing the FROM email address by switching this to 0 for no or 1 for yes
$allowfromchange = "1";

...the hack works perfectly and my user name shows up in the test email "From" box, and is also in the "Reply To" box.
Which is perfect, except I do not want the other users to have the ability to change the "From" to an admin or mods nick and pass off the email as coming from someoene else.
I also do not want the users to have email being sent from "Unknown Sender" though.

If I switch it back to "0" however, I again get an email from "Unknown Sender" and the "Reply To" box is empty.

I know I can also change the third option to have myself as the only one allowed to change the "From" variable, however again, I don't want the other user's having emails sent from "Unknown Sender's".

Anybody have any ideas?
I really like this hack, but need to configure it properly.


I was having the same issues as you with the UNKNOWN SENDER so i took a look around and may have got lucky.

around line 672(ish- ive hacked mine a lot at this stage )
Code:


elseif ($CMD=="send")
        {
        $head="From: $fr\n";

change to
Code:

elseif ($CMD=="send")
        {
        $loginmail=strtolower($bbuserinfo[username])."@yourdomain.com";
        $head="From: $loginmail\n";


This seemed to fix the issue of the senders name not showing up though im not sure if it had any adverse effect on things as i havent tested it enough yet.
I was busy working on automating each new user getting an e-mail account as soon as they log in and i have that sorted now as well (to a degree anyway)

dreck 03-28-2006 11:12 AM

Quote:

Originally Posted by Erwin
I'm getting some weird errors, but the hack itself works. I may post a beta version at some stage...

nice, looking forward to it!

DjTaz 03-29-2006 09:51 AM

Brillint hack - this is ALMOST perfectly what i wanted.

I have integrated this into my site in such a way that as soon as members sign up to my site they get an e-mail address with thier username and my domain as their email (username@mydomain.com) - this is the only e-mail they can access from my site and i have limited each account to 1 meg.

What i would love is a few things really if anyone has any ideas

1. Can i display if they have new mail on the main pages on the site (say forum home).
2. Can i show a SENT folder for the mails they have sent , like most mailboxes ?
3. Possibility of a contacts page
4. If a message has been viewed , it displays as OLD and if not NEW

I think this would be perfect if i could get them things as well.

dreck 04-15-2006 10:29 PM

did anyone get this to work with 3.5?

DjTaz 04-16-2006 10:00 AM

I eventually ended up uninstalling this script. Not because it was bad or caused any problems , but because i decided to install squirrelmail as a full mail system instead.

I had to hack it a lot to get rid of the frames (ended up just hiding it and adding menus to the right frame), but i now have what i want with the contacts and everything else.

For those who are looking for a version for 3.5 - why not take a look at an existing mailbox system and try to integrate that into your site ?
I have a page now on mine that sends the info i need for the mailbox from the boards which makes it run quite smoothly in all.

Patria 06-21-2006 08:31 PM

Another option represents WMail.

dreck 06-22-2006 01:26 AM

Quote:

Originally Posted by BlackSun
Another option represents WMail.

Yep, I installed wmail few weeks ago, works great! :banana:

yahoooh 09-22-2007 05:06 PM

is there new version for 3.6.8?
this hack is greeat addition for our forum

Fabsboards 05-09-2008 05:18 AM

Does this work with 3.7.0 Gold?

If not....

Google now offers "Gmail for your domains". Free IMAP email

Problem - I hate Gmail's web interface. I want something integrated with vb.

Are there any modules that will give me this capability?

fdv 05-09-2008 11:31 AM

I have installed it, but :

Fatal error: Cannot re-assign $this in /var/www/gex/lrtiki.info/web/forum/email.php on line 120


All times are GMT. The time now is 11:42 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.01473 seconds
  • Memory Usage 1,782KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (30)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete