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)
-   -   Mini Mods - Email reminder for inactive users (https://vborg.vbsupport.ru/showthread.php?t=138946)

djbaxter 05-04-2007 01:06 AM

I believe if you're using version 1.11, it doesn't actually send all those 400 emails out at once. Rather, it adds them to the vBulletin mail queue.

Chris, please correct me if I'm wrong (I'm actually still using 1.09 myself).

lazydesis 05-04-2007 02:24 PM

Quote:

Update 1.1.1
Edited default templates
Added daily report
coule you please tell me where the report is? thanx ..great hack meanwhile :D

YLP1 05-04-2007 05:12 PM

Quote:

Originally Posted by djbaxter (Post 1241009)
I believe if you're using version 1.11, it doesn't actually send all those 400 emails out at once. Rather, it adds them to the vBulletin mail queue.

Chris, please correct me if I'm wrong (I'm actually still using 1.09 myself).

Gosh I hope so but when I look at the task report, it shows them all going out at the same time.

I couldn't get ver1.09 to work at all which is why I installed the 1.11. Right now I have disabled the cron pending confirmation of whether or not the product uses the vb mail queue.

BadgerDog 05-04-2007 05:19 PM

Quote:

Originally Posted by YLP1 (Post 1241448)
Gosh I hope so but when I look at the task report, it shows them all going out at the same time.

I couldn't get ver1.09 to work at all which is why I installed the 1.11. Right now I have disabled the cron pending confirmation of whether or not the product uses the vb mail queue.


I don't know about v1.11, but my v1.09 sent out 150 emails over a few days at 10 at a time. I know a lot of folks received them because my logins went up 50% or more. I do know that the test one I sent to a Hotmail account never arrived, but I wonder if that's a filtering thing (blocking?) being done by MSN?

Regards,
Doug

YLP1 05-04-2007 06:10 PM

Using ver1.09 ---- I moved one of my old test member names into a test group--- it hadn't accessed the forums for 8 months.

I never got the email nor did the report identify that the email was ever sent. That's why I tried the 1.11. I am crossing my fingers that 400 emails didn't go out at once. I have a large community forum for a small city and 99% of my members live in this community and use one of three IP providers. That is why I am really worried about the blacklisting ---- Can you imagine one or more of these providers received 200 emails from one source in a span of 5 to 10 minutes? Ouch.... I am crossing my fingers that you are right about it using the vb mail queue. If not, I could be toast with the batch that went out last evening.

Burley 05-06-2007 09:23 PM

Great hack!

Is it possible to change the language of the e-mail automatically according to the default language wich a user has set?

v12kid 05-06-2007 10:55 PM

any updates to the issue with the quantity being sent out? I am afraid to send some as well, dont want to get blacklisted!

Once there is clarification on the issue I will Install it!!

YLP1 05-06-2007 11:04 PM

Quote:

Originally Posted by v12kid (Post 1242745)
any updates to the issue with the quantity being sent out? I am afraid to send some as well, dont want to get blacklisted!

Once there is clarification on the issue I will Install it!!

I am waiting for the response as well... I have the ver1.11 installed (couldn't get v1.09 to work) but I disabled the auto cron so that it won't send any emails until I know for sure about the number of emails being sent at one time.

I will say that out of the 400+ that ver 1.11 said it sent --- I haven't received one single bounced email which I think is very unusual. I am wondering if the emails were sent at all even though the log states they were. I don't know how to test this any other way than to use my test account that hasn't been accessed for over 6 months. I never got an email for that account either.

aam 05-08-2007 05:53 PM

Quote:

Originally Posted by kitsch (Post 1236639)
I've sent out a huge batch of e-mails and to my surprise the From: field of the e-mail has been set incorrectly. It should have been:

admin@gsm-forum.eu

and instead it got set to:

"GSM Forum Europe" <GSM Forum Europe@p2pgsm.com>

(p2pgsm.com being the name of the server the forum runs on). So the users received the mail from europe@p2pgsm.com... Which isn't really cool. :(

Quote:

Originally Posted by C Braithwaite (Post 1236858)
Not being funny or anything, but try setting your email address to the correct address in your ACP?
The reason that it is putting that email address is because that is what YOU set it to. any emails sent out from vbulletin will use that email address as the return address/contact address.

I've been playing with your mod (v1.11) and it is very useful, but it needs a bit of tweaking. There is a real problem where the from field is not being generated correctly. I initially thought it must be something to do with the email address in vboptions, but it isn't.

I've noticed that the resultant email "from field" can end up as various things, but generally either "bbtiltle <bbtitle>" or bbtitle<servername>. This can lead to the email being rejected by some mail servers (as the sent email does not have a correct email from header, or a domain indicated and no @).

The problem is due to the way vbmail has been used in remindermail.php. The final email from field is not generated by: (line50)
Code:

$uheaders .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";
Instead it is from the $from: (line 69)
Code:

vbmail($toemail, $subject, $message, $notsubscription = false, $from = $vbulletin->options['bbtitle'], $uheaders = '', $username = '');
So all it was generating was a from based on bbtitle. One way to correctly generate a from field containing the board's email is to change $from to use 'webmasteremail': (line 69)

Code:

vbmail($toemail, $subject, $message, $notsubscription = false, $from = $vbulletin->options['webmasteremail'], $uheaders = '', $username = '');
A similar problem can be seen in the reminder report produced (line 79), but this time multiple from email headers are created on the report - one from $from and another from $uheaders.

C Braithwaite 05-08-2007 06:39 PM

Quote:

Originally Posted by djbaxter (Post 1241009)
I believe if you're using version 1.11, it doesn't actually send all those 400 emails out at once. Rather, it adds them to the vBulletin mail queue.

Chris, please correct me if I'm wrong (I'm actually still using 1.09 myself).

Quote:

Originally Posted by YLP1 (Post 1241448)
Gosh I hope so but when I look at the task report, it shows them all going out at the same time.

I couldn't get ver1.09 to work at all which is why I installed the 1.11. Right now I have disabled the cron pending confirmation of whether or not the product uses the vb mail queue.

Yes it adds it to the vbulletin mail queue.
sorry, i;ve got a killer headache right now so im not able to reply to everything.


All times are GMT. The time now is 06:05 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.02167 seconds
  • Memory Usage 1,757KB
  • 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
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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