Search results

  1. L

    A subscriber has been rejected from joining because the system was not able to find a suitable delivery server to send the email

    I know, it was set to Use for > All. I only added the other stuff while trying to see if that would fix the error I am getting.
  2. L

    How to log full 'giveup' message?

    Huh, the error that I am seeing says truncated: Client error: `POST https://api.elasticemail.com/v4/emails` resulted in a `403 Forbidden` response: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xml (truncated...)
  3. L

    How to log full 'giveup' message?

    My MailWizz has significantly slowed down over the past day, and I am trying to diagnose what the issue is. One thing I noticed is that we are getting more 'giveup' status for sending emails. Something like 5% of emails have been ending in 'giveup', which is unsual. Is there any way to log the...
  4. L

    A subscriber has been rejected from joining because the system was not able to find a suitable delivery server to send the email

    We have one delivery server that is set to be used for everything. It works just fine, except for these period error messages. Is there something wrong with our configuration?
  5. L

    Does PCNTL work with redis?

    I recently enabled redis for cache/mutex, but it seems that parallel campaigns with PCNTL no longer work after enabling redis. Are the two incompatible?
  6. L

    A subscriber has been rejected from joining because the system was not able to find a suitable delivery server to send the email

    Actually, looking back, it seems like this error was happening before and I never noticed. But what could be causing it?
  7. L

    A subscriber has been rejected from joining because the system was not able to find a suitable delivery server to send the email

    Getting this new error that I have never seen before. Any idea what is up? We have an active delivery server that works, and we havent touched those settings in years, so not sure what is prompting this error.
  8. L

    Redis for cache/mutex throwing 500 error

    wow, im a moron, cant believe i missed that. it works now! question. how do I remove the cache and mutexes that were saved to disk before? can I just delete the files in /apps/common/runtime/cache and /apps/common/runtime/mutex?
  9. L

    Redis for cache/mutex throwing 500 error

    This is the error command line throws after adding the redis cache code to main-custom.php: CException: Property "CConsoleApplication.cache" is read only. in /path/to/vendor/yiisoft/yii/framework/base/CComponent.php:169 Stack trace: #0...
  10. L

    Redis for cache/mutex throwing 500 error

    I followed the directions at https://www.mailwizz.com/kb/using-redis-cache-mutexes/. But when I add this... 'cache' => array( 'class' => 'common.components.cache.RedisCache', ), 'mutex' => array( 'class' => 'common.components.mutex.RedisMutex', ), ...to...
  11. L

    Redis with unix socket

    you should consider adding unix socket support, it is faster than tcp
  12. L

    PHP 8.4?

    php 8.3?
  13. L

    PHP 8.4?

    Has mailwizz been tested to php 8.4?
  14. L

    Redis with unix socket

    Followed the directions at https://www.mailwizz.com/kb/using-redis-cache-mutexes/ but want to use redis via unix socket, so I did this: 'cache' => array( 'class' => 'common.components.cache.RedisCache', 'scheme' => 'unix', 'path' => '/path/to/redis.sock', )...
  15. L

    Exclude certain domains from creating tracking links?

    Not for me it is not. Perhaps it depends on when disable-tracking=1 is being added? I am replacing shortcodes using the campaigns_get_common_tags_search_replace filter and adding disable-tracking=1 then.
  16. L

    Exclude certain domains from creating tracking links?

    I don't mind losing the click tracking. Is there a built in MailWizz function to delete the URLs in the "campaign_url" table? Or should I just do it manually?
  17. L

    Exclude certain domains from creating tracking links?

    So I tested this and this does disable tracking but MailWizz is NOT stripping disable-tracking=1 from the links, so the final URL has it.
  18. L

    Exclude certain domains from creating tracking links?

    Great, thanks. How can I delete the millions of already created tracking links? Is it safe to delete those specific links from "campaign_url" table or are there other tables I should also delete them from?
Back
Top