vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vBulletin Mail System (https://vborg.vbsupport.ru/showthread.php?t=125890)

Slave 11-24-2006 08:50 AM

Anyone noticed that if you delete a mail from your sent folders list using the Delete link (and not the tick boxes) it deletes all of the mails in that folder? Same sort of thing happened when I deleted a mail from my draft folder, it deleted all of my sent mail too ..

.. and if you have .. do you have a fix? thanks :)

yoyoyoyo 11-24-2006 09:25 AM

thanks lionel!

Slave 11-24-2006 02:06 PM

hmm .. finally got IMAP installed on the server \o/ ..

However, I now get the following
Code:

PHP error: imap_open(): Couldn't open stream {localhost:110/pop3/notls}INBOX (/home/virtual/site101/fst/var/www/html/vbms_checkmail.php:104
.. when looking at the log file ..

Any ideas whats wrong?

Slave 11-26-2006 04:11 AM

Quote:

Originally Posted by Slave (Post 1124239)
hmm .. finally got IMAP installed on the server \o/ ..

However, I now get the following
Code:

PHP error: imap_open(): Couldn't open stream {localhost:110/pop3/notls}INBOX (/home/virtual/site101/fst/var/www/html/vbms_checkmail.php:104
.. when looking at the log file ..

Any ideas whats wrong?

After playing with my imap_open statement, I finally got this working .. \o/

Slave 11-26-2006 04:16 AM

Quote:

Originally Posted by Slave (Post 1124147)
Anyone noticed that if you delete a mail from your sent folders list using the Delete link (and not the tick boxes) it deletes all of the mails in that folder? Same sort of thing happened when I deleted a mail from my draft folder, it deleted all of my sent mail too ..

.. and if you have .. do you have a fix? thanks :)

Within vbms_functions_api.php

Find ..

Code:

                // delete messages
                $db->query(
                                "DELETE FROM " . TABLE_PREFIX . "vbms_message
                                WHERE $hasmessages userid = $userid");
                               
                // delete attachments
                $db->query(
                                "DELETE FROM " . TABLE_PREFIX . "vbms_attachment
                                WHERE $hasmessages userid = $userid");

and replace with ..

Code:

                // delete messages
                $db->query(
                                "DELETE FROM " . TABLE_PREFIX . "vbms_message
                                WHERE messageid IN ($messageids) AND userid = $userid");
                               
                // delete attachments
                $db->query(
                                "DELETE FROM " . TABLE_PREFIX . "vbms_attachment
                                WHERE messageid IN ($messageids) AND userid = $userid");

That seems to fix the problem I think :)

Let me know if I've changed something I shouldn't ;)

Slave 11-26-2006 07:14 AM

Quote:

Originally Posted by Slave (Post 1121158)
it seems like something is the wrong away round .. say my alias is "slave" and my forum account is "Slave" .. when I send out an email the received name and email address look like this ..

slave<Slave@testsite.com>

Spot the incorrect capitalisation ..

This can be fixed by ..

Opening vbms_class_mail_message.php

Find ..
Code:

                        "From" => "\"$this->fromalias\" <$this->fromusername" . "@" . $vbulletin->options['vbms_todomain'] . ">",
and replace with ..
Code:

                        "From" => "\"$this->fromusername\" <$this->fromalias" . "@" . $vbulletin->options['vbms_todomain'] . ">",

Slave 11-26-2006 11:34 AM

Am I right in thinking that the notification email is missing something? At the moment it just sends out a blank email ..

How would I go about putting something in the body of the email?

Lionel 11-26-2006 11:18 PM

Quote:

Originally Posted by Slave (Post 1125452)
Am I right in thinking that the notification email is missing something? At the moment it just sends out a blank email ..

I haven't got that problem

filburt1 11-26-2006 11:19 PM

An older version had a problem of a blank notification e-mail (a combination of a missing template and arguments for a method out of order), but I thought it's fixed in this version.

dodgeboard.com 11-26-2006 11:30 PM

Quote:

Originally Posted by Slave (Post 1125452)
Am I right in thinking that the notification email is missing something? At the moment it just sends out a blank email ..

How would I go about putting something in the body of the email?

Yeah, mine does the same thing. The forums sends out a blank email with the subject "You have new email" but nothing in the body. I just thought that was normal.

Lionel 11-26-2006 11:43 PM

see if you have this phrase (must be global)
Quote:

new_message_email_notification
with this content

Quote:

Hello {1} ({2}@{3}),
You have received a new e-mail message at {4} from {5} with the subject "{6}." You may have received more messages as well.
* To read this specific message, please visit: {7}.
* To view all of your e-mail messages, please visit: {8}.
* To stop receiving this notification message when you receive new e-mails, please edit your e-mail options by visiting: {9}.
Yours,
The {4} team

Lionel 11-26-2006 11:47 PM

and a vBMS phrasetype for the subject line

Quote:

new_message_email
Quote:

New e-mail message at {1}

dodgeboard.com 11-26-2006 11:51 PM

Quote:

Originally Posted by Lionel (Post 1126006)
and a vBMS phrasetype for the subject line

I have the VBMS phrase, but not the global phrase. I added the new_message_email_notification phrase and am testing it now.

EDIT: Yep, that fixed it!!

Thanks Lionel

Slave 11-27-2006 05:23 AM

Yep, I too had the missing global phrase .. ta :)

Slave 11-27-2006 06:05 AM

btw .. When vbms handles attachments does it use the settings in the Attachment Manager within vB? .. the reason I ask is I've noticed emails coming in which should have .jpg attachments of 1/2 meg in size missing the attachment. It seems vbms is either striping the attachment or can't cope with the size of the attachment.

Any ideas why that might be happening?

An example; I sent myself an email with a 1MB jpg file attached. I got the email but with no attachment. vbms then seemed to go into a loop as i got a new copy of the email everytime i refreshed the page. It was only once I'd changed my alias to something else that it stopped appearing in vbms.

Lionel 11-27-2006 06:09 AM

vBMS Permissions->Attachment settings->Meg per message

Slave 11-27-2006 06:20 AM

Well .. this is using my admin account, so shouldn't have a meg per message limit should I? and I don't have the ability to change this setting for admin anyway. On the one usergroup I do have on at the moment the meg per message is set at 5MB, so a 1/2MB or 1MB attachment should get through.

Killsparer 11-28-2006 11:43 AM

Since there have been found quite some bugs again, it would be really great to see an updated version of the script.

Or perhaps even an entire new topic in the department for 3.6 addons?

Lionel 11-28-2006 11:57 AM

Quote:

Originally Posted by Slave (Post 1126188)

vbms then seemed to go into a loop as i got a new copy of the email everytime i refreshed the page. It was only once I'd changed my alias to something else that it stopped appearing in vbms.

I don't have those issues

dodgeboard.com 11-29-2006 12:10 AM

I am still having the HTML issue - doesn't properly send HTML like smilies, just shows the URL.

Lionel, didn't you find a fix for this?

filburt1 11-29-2006 12:12 AM

Quote:

Originally Posted by dodgeboard.com (Post 1127708)
I am still having the HTML issue - doesn't properly send HTML like smilies, just shows the URL.

Lionel, didn't you find a fix for this?

It should send them as image tags, and the mail client should download them. However, most, rightly so, do not download them for security reasons.

The ideal solution is to embed the necessary emoticons as attachments referenced within the HTML, which is technically possible, just never implemented in vBMS.

Lionel 11-29-2006 12:17 AM

Quote:

Originally Posted by dodgeboard.com (Post 1127708)
I am still having the HTML issue - doesn't properly send HTML like smilies, just shows the URL.

Lionel, didn't you find a fix for this?

you need to use the enhanced editor.

dodgeboard.com 11-29-2006 12:18 AM

O I C!!

Thanks Lionel!

Killsparer 12-12-2006 02:56 PM

Again, would someone be so kind to create a neat package with all the recent bugfixes and changes?

It would be much appreciated!

Edit: Is anyone still using this addon anyway?

chick 12-17-2006 06:35 PM

I'd love to use it/try it out if these are updated files????

Lionel 12-17-2006 06:46 PM

Quote:

Originally Posted by Killsparer (Post 1137138)

Edit: Is anyone still using this addon anyway?

I am, without any problems.

Killsparer 12-18-2006 08:44 AM

Quote:

Originally Posted by Lionel (Post 1140496)
I am, without any problems.

Doesn't count, since you did all the changes... ;)

I tried to add all the changes myself, but gave up after the 1000th bugfix-posting and due to my lack of vbulletin-coding knowledge. And i don't believe i am the only one here.

AyeCapn 12-19-2006 05:06 PM

I just installed it and am making the changes one at a time from Lionel's post of the 3.6.0 final files

some bugs here and there, but there is hope.

Discussions 12-21-2006 10:39 PM

I agree, this webmail system is dead unless someone actually takes the time to release a fixed version. Permission has been given, which is why it was released to the community.

chrisbr 12-25-2006 08:08 PM

id be interested to actually see this packaged up proplerly with a working installer

Brent H 12-26-2006 06:45 PM

If I knew how to package it I would... Lionel or someone knowledgeable, can you help us out?

TheHeartSmasher 12-29-2006 07:37 AM

So does this work and will it be available for 3.6.0

wrmoss 12-29-2006 04:18 PM

I'd be willing to pay someone several thousand dollars to get this working (robustly) in vbulletin 3.6.x... This kind of feature would generate so much website traffic, it's worth thousands of dollars. I'm very serious, so please PM me or reply to this thread if this is a possibility...

Will

blueuniverse 12-29-2006 04:55 PM

Whilst I agree it is an essential, I know it is for my board, the terms at the beginning stated the following.

Quote:

You cannot:

* Advertise any of your modifications that you may be selling at vBulletin.org.
* Use vBMS for any illegal purposes, including use vBMS on a forum without an active vBulletin license.
* Modify vBMS to do whatever you like, and then claim the entire product as your own.
* Remove mentions of vBMS, the "vBulletin Mail System", or other branding, and replace them with others that imply you exclusively developed the product.
* Sell any components of vBMS that the product originally contained or others have freely developed.
* Sell the product as a whole, including a modified product.


wrmoss 12-29-2006 06:29 PM

Quote:

Originally Posted by blueuniverse (Post 1147033)
Whilst I agree it is an essential, I know it is for my board, the terms at the beginning stated the following.

This would not be to buy the software it would be to pay for someones man hours to improve the existing vbms software (and the rest of the community can benefit from it)... It appears that the reason that this software never got ported was because nobody has time to do it. So I'll pay somebody to do it and the rest of the world can benefit from it. If this is done right it would be crazy hot for all of us...

Let's do it come on!

iChambers 12-29-2006 06:52 PM

Well I will look at the code next month see if we can improve it otherwise I would just rewrite the entire code with allot more features such as calendar, task and make it more like a mail program itself similar to Horde Webmail but with vB Intergrations. But at this time I do not have the time but should have some time next year to do it starting in Jan - but I would need a group of beta testers to test it and provide feedback!

I would like to get the input of everyone who wants this done so I will be holding an open discussion on it on Jan 2, 2007 if anyone is interested on how to access this PM me - for the discussion will proabbly occur on a Skypecast but PM for best time in EST or let us know your timezone - so we can set the best time for it. We will discuss where this project is now as well as things that should be added to it - known bugs and what not so I get a better understanding what I am going to put myself and staff through.

Snake 12-30-2006 11:23 AM

Any idea if this is gonna work on 3.6.4?

dodgeboard.com 12-30-2006 01:11 PM

Works on mine- I have 3.6.4 (3.6.3 w/patch)

blueuniverse 01-03-2007 06:37 AM

Any updates with the packaged for 3.6 build?

jhaegele 01-06-2007 07:19 PM

Just a bump to show there is interest in this for v3.6 - if resources are needed, please PM me - I'll see what I can provide ;)


All times are GMT. The time now is 03:30 AM.

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.01639 seconds
  • Memory Usage 1,834KB
  • 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
  • (6)bbcode_code_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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