
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Run a smtp server that store every mail in a Maildir_. The goal is to tests that emails are sent when doing functional tests. You can also use it to verify the rendering of email in a desktop email client, that real Maildir format. You can also use it has a smtp server blackhole or test that you do not send email.
.. _Maildir: http://en.wikipedia.org/wiki/Maildir
smtpfixture is based on twisted and is just few line of codes for writing a TAP file.
::
pip install smtpfixture
::
cd `smtpfixture-installdir` && twistd smtpfixture
.. note::
smtpfixture is a tap file and it must be found by the twistd script.
To get the plugin discovered by twistd, a change directory must be done.
if you have a better solution, just let me now.
To stop the service, you can run the following command:
::
kill `cat twistd.pid`
.. note::
The command ``twistd -n smtpfixture`` can be used to avoid deamonization.
By default smtpfixture run on port 8025 as it did not require any privileges, but you can run it on the port you want.
To run it on port 25, as root, as a smtp blackhole (no email stored):
::
cd `smtpfixture-installdir` && twistd smtpfixture -p 25 -m /dev/null
.. note::
twistd provide options to change the uid/gid to fix privileges issues.
FAQs
SMTP Server that keep all email
We found that smtpfixture demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.