Search results

  1. S

    I thought this was a type of AutoResponder but I don't think MailWizz supports it

    I always thought that AutoResponders were sequences of emails. Sure they're triggered by an initial email or sign-up but from the perspective of an EMM (such as MailWizz) I always considered them to be sequenced groups of emails. I don't think Mailwizz supports this, I'd like to find out how...
  2. S

    Autoresponder intervals

    Where do we define these sequences?
  3. S

    112,000 emails in my bounce inbox - and rising

    Google might not be the best email provider to use as they automatically move bounces into the Spam folder... To avoid this, follow the advice here: http://joe.siegler.net/2013/03/turning-off-spam-checking-in-gmail/ (eg create a filter where mail has the words "in:spam" and set it to "Never...
  4. S

    112,000 emails in my bounce inbox - and rising

    is this what you meant?
  5. S

    112,000 emails in my bounce inbox - and rising

    I set up a Gmail email as a bounce server and it's not working. No bounces are being recorded and they should be - I'm only getting partial data here. Eg: Open rate is 0% but click rate is 0.165%, Eg: zero bounces but 12 delivery errors. Any and all advice gratefully received here... I can...
  6. S

    112,000 emails in my bounce inbox - and rising

    Still having massive problems with bounces. 300,000 of them now. According to the manual: Bounce servers are optional Yes, this is true. You are not forced to add and use a bounce server, but if you don't, then the entire bouncing mechansim will not work, that is, you will not get statistics...
  7. S

    Subscribers Email Through API

    How do I ensure security - how do I make sure that only the correct person can operate this API? Is there any authentication in place that can do this? We put the public and private keys into setup.php on the server - is that secure? That means anyone with access to the server could potentially...
  8. S

    Subscribers Email Through API

    got something: Your app doesn't use .htaccess and url rewriting does it... Because when I have the config like that (see above) var_dump does this: object(MailWizzApi_Http_Response)[16] public 'url' => string 'http://email.artisansend.co.uk/api/lists/jz3528x6ez7b1/subscribers' (length=66)...
  9. S

    Subscribers Email Through API

    $config = new MailWizzApi_Config(array( 'apiUrl' => 'http://email.artisansend.co.uk/api', 'publicKey' => 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', 'privateKey' => 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', // components 'components' => array( 'cache' => array( 'class' =>...
  10. S

    Subscribers Email Through API

    The code I'm running is this: <?php // sub.php file require_once dirname(__FILE__) . '/setup.php'; $listUid = 'jz3528x6ez7b1';// you'll take this from your customers area, in list overview from the address bar. $email = getCleanParam('email', FILTER_VALIDATE_EMAIL, null); if (!$email) {...
  11. S

    112,000 emails in my bounce inbox - and rising

    OK - thanks for the tip, I'll definitely do that. The MySQL database gets very big very quickly ;) Any other tips? Or shall I do that first and then come back ;)
  12. S

    Subscribers Email Through API

    This doesn't work by the way. I'm trying to debug it at the moment. It looks like it breaks REST. MailWizzApi_Endpoint_ListSubscribers->create requires a POST. We're using a GET. Not sure if it's that though. All I know is, there is no new subscriber in mw_list_subscriber. I'm using PHPStorm -...
  13. S

    rtl (right to left) query - can your translations handle text in the other direction

    Hi there, I've been asked to do some work for a client in the Middle East. I'll be hiring a translator to translate MailWizz into a right-to-left language. I know PHP handles that easily - but does MailWizz? Thanks Simon
  14. S

    112,000 emails in my bounce inbox - and rising

    It was dovecot related - the cache file was too large. In fact I had to pause all campaigns for 3 days. The bounces would process a little bit at a time - maybe 50 every 10 minutes. After 3 days the bounce list had reduced down to manageable proportions. I am moving the bounces over to Gmail...
  15. S

    112,000 emails in my bounce inbox - and rising

    155,000 emails now, mailbox over 3GB. Can you help?
  16. S

    112,000 emails in my bounce inbox - and rising

    temporarily on 16GB RAM and 8 cores. Still won't load the cache file. Deleted the cachefile and restarted Dovecot. I try running the script from the Mailwizz box and it stops after 10 seconds. How can I diagnose this?
  17. S

    112,000 emails in my bounce inbox - and rising

    Still won't allocate memory, going to temporarily upgrade the RAM on the mail server to handle the backlog
  18. S

    112,000 emails in my bounce inbox - and rising

    vsz_limit wasn't set, default is 64Mb. On a 3GB mailbox that's not going to play nice. I've upped it temporarily to 1024MB which we handle the backlog. Hopefully that should do it. At least manually running the bounce-handler from the MailWizz server doesn't seem to stop after a few seconds.
  19. S

    112,000 emails in my bounce inbox - and rising

    I ran it without the -q as well to try to get some output - it runs for 10 seconds then exits. I also tried > ~/out.txt but it makes an empty file. ah: on the iredmail server: grep bounce /var/log/dovecot.log gives lots of Oct 15 15:08:53 imap(bounce@artisan-mail.com): Error: mmap() failed with...
  20. S

    112,000 emails in my bounce inbox - and rising

    Hi Twisted, No that box is dedicated to MailWizz. (8GB RAM, 4 cores) The website runs on a different box - again it only runs the website. (2GB RAM, 1 core) The SMTP server runs on a 3rd box, we use the SMTP server (it runs iredmail) for bounces as well. (4GB RAM, 2 cores) It has dovecot and...
Back
Top