Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
microNEWSLETTER (Mailinglist Manager) Details »»
microNEWSLETTER (Mailinglist Manager)
Version: 4.2.0, by MaryTheG(r)eek MaryTheG(r)eek is offline
Developer Last Online: Mar 2012 Show Printable Version Email this Page

Category: Major Additions - Version: 4.0.x Rating:
Released: 01-25-2010 Last Update: 01-27-2010 Installs: 101
DB Changes Uses Plugins Auto-Templates
Additional Files Translations Is in Beta Stage  
No support by the author.

*** Link Removed ***

Supporters / CoAuthors

Show Your Support

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

Comments
  #52  
Old 01-27-2010, 03:15 PM
we_are_borg we_are_borg is offline
 
Join Date: Jul 2004
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MicroHellas View Post
As I'm not so familiar with the orology, even if I do believe that I understood what you ask for, do you mean a mechanism to control email that didn't sent and resend them at a later time?

If this is, sure I'm planing to add this feature. If not, try with simplier words to make me understand

Maria
There is a script that you can look at that uses bounces its called PHPList. Just look at that one its GPL so you can access it free.
Reply With Quote
  #53  
Old 01-27-2010, 03:22 PM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by we_are_borg View Post
There is a script that you can look at that uses bounces its called PHPList. Just look at that one its GPL so you can access it free.
Now I'm at www.php.net and I'm reading (and trying) all IMAP functions. I like most this way, but thank you for your refference. Most important for me is to get more knowledge, than just copy some lines of code.

Maria
Reply With Quote
  #54  
Old 01-27-2010, 03:41 PM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

updated to 4.1.0, but like the older version i can't run the scheduled campaigns ... :S i set a specific hour but the mail doesn't work ... it works only if i go in the 'tasks' and run the cron manually ... any tip?
Reply With Quote
  #55  
Old 01-27-2010, 04:02 PM
we_are_borg we_are_borg is offline
 
Join Date: Jul 2004
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MicroHellas View Post
Now I'm at www.php.net and I'm reading (and trying) all IMAP functions. I like most this way, but thank you for your refference. Most important for me is to get more knowledge, than just copy some lines of code.

Maria
Agree but if you look at it you know what to look for you still need to make your own code because you cant use it straight away.
Reply With Quote
  #56  
Old 01-27-2010, 04:09 PM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by we_are_borg View Post
Agree but if you look at it you know what to look for you still need to make your own code because you cant use it straight away.
I GOT HOW IT WORKS !!!
  1. Need to setup a mailbox eg bounce@domain.com
  2. Assign this email address as "From email" to microNEWSLETTER Options
  3. Add the following code in a cron file
Code:
<?
$mailbox = "{mail.domain.com:110/pop3/notls}INBOX";
$user = "bounce@domain.com";
$pass = "xxxxxxxxxx";
$mbox = imap_open($mailbox,$user,$pass);
 
$headers = imap_sort($mbox,SORTDATE,1);
foreach($headers as $key=>$val)
{
   $relay_from = '';
   $headerinfo = imap_headerinfo($mbox, $val);
   $relay_from = $headerinfo->from[0]->mailbox . "@" . $headerinfo->from[0]->host;
   echo $relay_from;
 }
 imap_expunge($mbox);
 imap_close($mbox);
?>
Of course I currently let out to delete the message, something that it will be done after adding the email in a bounce list.

So, tomorrow expect a new upgrade !!

Maria
Reply With Quote
  #57  
Old 01-27-2010, 04:21 PM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KURTZ View Post
updated to 4.1.0, but like the older version i can't run the scheduled campaigns ... :S i set a specific hour but the mail doesn't work ... it works only if i go in the 'tasks' and run the cron manually ... any tip?
As I post previously, I don't believe that is a bug coming from my mod, but rather from vbulletin. The reason is simple. While it runs manually, means that my code is correct and working. What left out? That it dosen't run on the specific time, something for which is responsible the vB engine.

Maria
Reply With Quote
  #58  
Old 01-27-2010, 05:23 PM
ComoEstaEso-com ComoEstaEso-com is offline
 
Join Date: Jul 2009
Location: Puerto Rico
Posts: 112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is the Pro version available?

I would like to get that one from the start.
I ain't swimming in money over here, yet I would be more than happy to pay $50 for such versatility.

Subscribed!
Reply With Quote
  #59  
Old 01-27-2010, 05:44 PM
we_are_borg we_are_borg is offline
 
Join Date: Jul 2004
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MicroHellas View Post
I GOT HOW IT WORKS !!!
  1. Need to setup a mailbox eg bounce@domain.com
  2. Assign this email address as "From email" to microNEWSLETTER Options
  3. Add the following code in a cron file
Code:
<?
$mailbox = "{mail.domain.com:110/pop3/notls}INBOX";
$user = "bounce@domain.com";
$pass = "xxxxxxxxxx";
$mbox = imap_open($mailbox,$user,$pass);
 
$headers = imap_sort($mbox,SORTDATE,1);
foreach($headers as $key=>$val)
{
   $relay_from = '';
   $headerinfo = imap_headerinfo($mbox, $val);
   $relay_from = $headerinfo->from[0]->mailbox . "@" . $headerinfo->from[0]->host;
   echo $relay_from;
 }
 imap_expunge($mbox);
 imap_close($mbox);
?>
Of course I currently let out to delete the message, something that it will be done after adding the email in a bounce list.

So, tomorrow expect a new upgrade !!

Maria
Nice searching Maria love your dedication. But to make it more complicated for you if some one is listed on the blacklist by next visit on forum confront him with the fact that the email address is bounced and that he needs to update it and make it mandatory.
Reply With Quote
  #60  
Old 01-27-2010, 06:33 PM
MaryTheG(r)eek MaryTheG(r)eek is offline
 
Join Date: Sep 2006
Location: Greece
Posts: 1,340
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by we_are_borg View Post
Nice searching Maria love your dedication. But to make it more complicated for you if some one is listed on the blacklist by next visit on forum confront him with the fact that the email address is bounced and that he needs to update it and make it mandatory.
Opssss... Trust my imagination till tomorrow... You'll surprised... The difficult was how to access mailboxes as I never had worked arround it...Now, I know many nice tricky features:-)

Maria
Reply With Quote
  #61  
Old 01-27-2010, 06:49 PM
NFLfbJunkie NFLfbJunkie is offline
 
Join Date: Sep 2006
Posts: 327
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have followed all of the simple instructions but this still isn't working for me. Even when I run the cron job manually nothing happens; it still says the campaign is scheduled. See my attachments for how I have everything set up. Can't figure out what I might be missing.
Reply With Quote
Reply

Thread Tools

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:19 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.04967 seconds
  • Memory Usage 2,312KB
  • Queries Executed 26 (?)
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
  • (2)bbcode_code
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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_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