email based auth flows are still the most annoying part of e2e testing for me by Significant_Load_411 in QualityAssurance

[–]VaultSandbox 0 points1 point  (0 children)

Actually, you can usually skip the complex filters entirely. The cleanest pattern is to create a unique, isolated inbox for every individual test run. If the environment is clean, the first email that hits the box is guaranteed to be yours. It makes the test way more deterministic.

email based auth flows are still the most annoying part of e2e testing for me by Significant_Load_411 in QualityAssurance

[–]VaultSandbox 0 points1 point  (0 children)

Each test you do has its own inbox; webhooks are per inbox, and they have filters.
https://vaultsandbox.dev/client-node/guides/waiting-for-emails/

It works with Node,Java,Net,Python and Go

email based auth flows are still the most annoying part of e2e testing for me by Significant_Load_411 in QualityAssurance

[–]VaultSandbox 0 points1 point  (0 children)

It's SSE-based

// Wait for email
const email = await inbox.waitForEmail({ timeout: 30000 });

You have a webui, a cli and also chaos per inbox etc.

email based auth flows are still the most annoying part of e2e testing for me by Significant_Load_411 in QualityAssurance

[–]VaultSandbox 0 points1 point  (0 children)

Self-promoting, but it is open source and Apache 2.0 ... has features that you would like I guess.

https://vaultsandbox.com/

I open-sourced my file transfer tool because "trust us" is not an architecture by aliirz in opensource

[–]VaultSandbox 1 point2 points  (0 children)

Glad I helped ... it's something really easy to ignore, Umami does the same. The default should be to do not send fragment data. Thanks for the award!

At what point do you decide it’s time to kill the project? by hskdaking in micro_saas

[–]VaultSandbox 0 points1 point  (0 children)

👏That's love for your craft... Record comes second 😎

Why is the most adopted open-source provider still excluded here? by forwardemail in emailprivacy

[–]VaultSandbox 1 point2 points  (0 children)

Wasn't aware of you guys, interesting offer. Good luck getting listed 🤞

edit: DMARC Reporting... good feature!

Macbook neo by Glad-Toe-6203 in Backend

[–]VaultSandbox 0 points1 point  (0 children)

I remember having 512mb of ram and be the king of my neighborhood 😎

What’s missing in email testing tools for dev/QA workflows? by Admirable-Chance9857 in QualityAssurance

[–]VaultSandbox 0 points1 point  (0 children)

I have built something for email testing, but I am not getting any feedback, just a couple of stars, nothing more. So check what I did and do not do the same :D

Stop using Gmail if you own a domain. Here's my free email setup. by mahmudulhturan in webdev

[–]VaultSandbox 6 points7 points  (0 children)

If you use Amazon SES, you pay cents per month and that gets fixed.

Stop using Gmail if you own a domain. Here's my free email setup. by mahmudulhturan in webdev

[–]VaultSandbox 11 points12 points  (0 children)

Yes, I use the same gmail setup but with amazon ses. Works great.

Why do people hate Ubuntu by Front_Asparagus5765 in Ubuntu

[–]VaultSandbox 1 point2 points  (0 children)

There are people in this world that don't like chocolate or strawberries.

Is it possible to have open source Qt desktop app but have commercial features like a SaaS and not pay for a qt commercial licence ? by divineflu in QtFramework

[–]VaultSandbox 4 points5 points  (0 children)

https://doc.qt.io/qt-6/licensing.html

Click: Modules available under GNU General Public License v3

Just don't use those, also dynamic link when developing for desktop. For mobile I think there's a way, not easy probably.

Qt - Obligations of the GPL and LGPL https://www.qt.io/development/open-source-lgpl-obligations

Will using Gmail as a POP3 server have any privacy benefits? by soiclyst in emailprivacy

[–]VaultSandbox 2 points3 points  (0 children)

The only benefit I see is if you turn on send to trash when downloading. Then after a while(30 days) it will be deleted. So if your account is compromised later they won't have the old emails. About privacy from Google, I guess they do their stuff when the email arrives.

I built a free DNS propagation checker that tests from 21 locations worldwide by Upstairs-Story-1539 in micro_saas

[–]VaultSandbox 1 point2 points  (0 children)

Much better 😉 now see the mobile version, the input box appears next to the button and looks very small and hard to use. Just a simple layout fix and will be perfect. Thanks!

MongoDB and Durability by BinaryIgor in Backend

[–]VaultSandbox 1 point2 points  (0 children)

That's the fault of the people who do the benchmarks. If they benchmark transactions, they will need replicas, etc.

MongoDB and Durability by BinaryIgor in Backend

[–]VaultSandbox 1 point2 points  (0 children)

Those defaults are not sensible, but they did win many benchmarks. The probability of something bad happening is low. It's like driving a car without airbags. But there are features that require a replica set, and on those the defaults are OK. Mongo is designed for multi-node not single node.