vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - Email Integration (New threads/replies by email) (https://vborg.vbsupport.ru/showthread.php?t=151222)

brettb 08-20-2008 08:37 PM

We have a fairly small forum implementation with less than 100 users. Our forums are all invite only and access is controlled individually through access masks. We've been using this mod since the start of the forum but have recently been experiencing a few problems.

1) Some users are creeping into the notification list who weren't specifically assigned to the forum. This problem is controllable by looking at the data and weeding them out, but it's still curious how that happens.

2) For the past few weeks we had a situation where people who were note in the notification list received forum emails. I've traced the code and manually run all the queries and I can't find any reason at all this would have been happening. Naturally it doesn't happen consistently, but it has happened more than once. Any theories on what's going on there?

AyeCapn 08-26-2008 12:07 PM

I suspect this has been brought up before, but couldn't find anything. When a thread is ut into moderation it still generates an email before the moderation is approved or denied. Can the email be delayed until moderation approval is given?

riahiarshia 08-26-2008 12:52 PM

Quote:

Originally Posted by Cyricx (Post 1602560)
Try using one of the connection options of with officially signed certificates or unofficial.

That should change the connection to the correct port.

No go!. I had to forward all of the emails to a Gmail account in order to get this to work.

Thanks Anyway !!

Bluefin221 08-26-2008 07:03 PM

Users on my site can't access the instant notification, admin can just drop the box down and choose to have instant e-mails, it works for them quite clearly as I have also been dropping in e-mails to the site, however users can't even change the settings???

txspaderz 09-04-2008 02:15 AM

Cyrix,

Long time! Question, I've been using this for quite a while now. I need the option to turn off the Invalid User Emali error. I have one forum set for unregistered users to post in, however the email -> user check you have setup is blocking this from happening...

Any chance of getting this to work?

whardwick 09-09-2008 12:52 PM

My IT administrator informs me that we only have SMTP authentication for sending and receiving. I tried all authentication methods provided with this mod and none of them seem to work.

Is there a work-around that I can use?

Thanks.

rodneytamblyn 09-15-2008 03:11 AM

Hi Cyricx,

I see in 2.6 there's a new feature to allow users to opt-out of being auto-subscribed. I have enabled this option in the admin CP, but I cannot for the life of me find where this option should appear in the User CP :)

Can you tell me where it should appear, and secondly, let me know if there is any other place in the admin system (other than Email Integration Settings) where I may have to enable this feature.

Thanks

~ Rodney

toivo 09-16-2008 01:36 AM

Hi,

If your user community prefers the old email layout but you do not like to see the complete thread in the email, this code limits the included messages to two.

The modification assumes that the following options have been selected:

AdminCP - vBulletin Options - Email Integration Settings:
  • Use Single From Address
  • Do you want to use the old layout for emails

You have to fill in these options:
  • Single From Name
  • Single From Address

How to modify:

Insert the modification after line 264 in includes/cron/emailintegration.php:
Code:

$mailmessage = preg_replace($pattern, $replace, $mailmessage);
Modification:

Code:

// 20080916 toivo@totaldata.biz: remove all but last message, leave one delimiter
// ei options set: 'use old email layout',  'use single from: address', 'single from name', 'single from address'
$from_str = 'From: ' . $vbulletin->options['ei_single_from_name'] . ' ';
$from_str .= '[mailto:' .$vbulletin->options['ei_single_from_address'] .']';
// remove text inserted by Outlook, possibly other clients
$original_str = '-----Original Message-----';
$underscore_str = '________________________________';
$first_pos = strpos($mailmessage, $from_str);
if ($first_pos !== false) {
        $second_pos = strpos($mailmessage, $from_str, $first_pos + 1);
        if ($second_pos !== false) {
                $mailmessage = substr($mailmessage, 0, $second_pos);
                // remove  last '----- Original Message -----'
                $first_orig_pos = strpos($mailmessage, $original_str);
                if ($first_orig_pos !== false) {
                        $last_orig_pos = strrpos($mailmessage, $original_str);
                        if ($last_orig_pos !== false AND $last_orig_pos !== $first_orig_pos) {
                                $mailmessage = substr_replace($mailmessage, '', $last_orig_pos, strlen($original_str));
                        }
                } else {
                        $first_us_pos = strpos($mailmessage, $underscore_str);
                        if ($first_us_pos !== false) {
                            $last_us_pos = strrpos($mailmessage, $underscore_str);
                            if ($last_us_pos !== false AND $last_us_pos !== $first_us_pos) {
                                $mailmessage = substr_replace($mailmessage, '', $last_us_pos, strlen($underscore_str));
                            }
                    }
              }
        }
}
// 20080916 end

Regards,
toivo

TBrewerton 09-16-2008 11:30 AM

Hi,

Is there an option for a daily digest of the messages rather than all messages, like on yahoo groups??

If not is there a mod for this??

Kindest Regards,

Tim

rconn 09-23-2008 10:42 AM

I had everything working for several months, then upgraded to vBulletin 3.7.3. Now the posts sent via email aren't appearing in the forum. (They are in the account inboxes, but they're apparently not being picked up.)

I doublechecked everything I could find but don't see any reason why the messages aren't being forwarded. Anybody have an idea what's going on?

Thanks.

Rex Conn


All times are GMT. The time now is 10:55 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.02368 seconds
  • Memory Usage 1,750KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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