Recent content by Sim

  1. Sim

    IP Database handling

    Just in case it's useful, here is the query I run to identify all IP addresses used by a specific user or group of users: SELECT ip.user_id, user.username, ip.content_type, ip.content_id, ip.action, INET6_NTOA(ip.ip) AS ip_text, ip.log_date, CONVERT_TZ(FROM_UNIXTIME(log_date)...
  2. Sim

    What's New Digest

    Send yourself a test digest email using the updated test tool in Admin CP in the new version. Then look at the message source of the email you get sent - the unsubscribe header added by XenForo looks like the following: List-Unsubscribe...
  3. Sim

    What's New Digest

    I should also note that if your ESP modifies the unsubscribe headers like SparkPost does - then the unsubscribe won't work for What's New Digest emails. However, assuming you have implemented a system to capture the unsubscribe notification coming from your ESP and turn off "Receive news and...
  4. Sim

    What's New Digest

    Thanks for bringing this to my attention Stuart - there was indeed a bug with the unsubscribe handling - it broke due to a change in behaviour introduced in XF 2.3 that I didn't pick up. Partially because I use SparkPost which over-writes the unsubscribe headers created by XenForo with their own...
  5. Sim

    What's New Digest - v5.3.0 - Bugfixes and updated test tool

    bugfix: user preference field in AdminCP wasn't showing in XF 2.3 due to template modifications that no longer worked - this has been fixed bugfix: unsubscribe uses stopAllExcept by default in XF 2.3 - so we need to ensure we're stopping Whats New Digest if this is called instead of StopAll...
  6. Sim

    What's New Digest

    Sim updated What's New Digest with a new update entry: v5.3.0 - Bugfixes and updated test tool Read the rest of this update entry...
  7. Sim

    XF 2.3 Is there any way to automatically disable/stop sending an email to users with Hard Bounce status?

    I think the issue is that you can't really have it both ways. If you want the users to be able to fix their own accounts once their email addresses issues have been sorted, then they need to be able to manually initiate a new confirmation email. Given it's a manual operation, it is generally a...
  8. Sim

    Real names forum - what's your policy?

    I run a private members-only forum for an industry association where I insist that people use real names - but I also insist they use a work email address so it's usually pretty easy to verify. I can also check names against the membership list if required - which is fairly definitive. The...
  9. Sim

    What's New Digest

    I address this question in the FAQ.
  10. Sim

    XF 2.3 AI agents

    So now we know who to blame when Skynet destroys us all! 🤖
  11. Sim

    XF 2.3 Validating data on certain events and it's performance implications

    It depends on the specific event. Sometimes it's easier to use a Class extension to hook into an event - sometimes it's easier to use one of the pre-defined code event listeners. You need to trace through the code that causes the event and identify a good spot to hook into - usually around the...
  12. Sim

    Too many connections - bots?

    You're not the first person to complain about this recently - I also assume it is bot related. My advice - first thing to do is to ensure your database server is well tuned and has sufficient RAM allocated to allow fast queries. Slow queries can cause an increase in connections required -...
  13. Sim

    Does XF 2.3 require a higher MySQL maxconnections setting?

    It's worth running some analytics - because if your database server is actually running slow and queries are taking a relatively long time to complete, then the thread running those queries won't be available to take on a new query and you'll need more connections to handle the load. What value...
  14. Sim

    Does XF 2.3 require a higher MySQL maxconnections setting?

    I doubt XF 2.3 is any worse than 2.2 in this regard. It will largely come down to spikes in traffic - you're probably getting a lot more bot traffic than you have previously, I've noticed a significant increase in recent months. Either way - every connection uses a bunch of RAM - my current...
  15. Sim

    What's New Digest

    Like I said I simply did a template modification on the MAIL_CONTAINER to match what the activity summary emails use and it worked - logo appears on all emails including the digest emails When I get a chance I will release a new version of the addon which does this without a template...
Back
Top Bottom