
Security News
Rust RFC Proposes a Security Tab on crates.io for RustSec Advisories
Rustâs crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.
@lando/mailpit
Advanced tools
The official Mailpit integration plugin for Lando. Mailpit is a modern email testing tool for developers that makes it easy to test email sending in your local development environment.
lando plugin-add @lando/mailpit
Add a mailpit service to your landofile:
services:
mailpit:
type: mailpit:1.27
mailFrom: # Defaults to appserver.
- appserver
# Optionally proxy the Mailpit UI to a custom URL.
proxy:
mailpit:
- myapp.lndo.site/mailpit
The mailFrom option is an array of services that will be configured to send mail to Mailpit. By default, this will be the appserver service.
For detailed configuration options, see our configuration documentation.
Send mail from your PHP app:
<?php
$to = 'recipient@example.com';
$subject = 'Test email from My App';
$message = 'This is a test email sent via PHP.';
$headers = [
'From: sender@example.com',
'Content-Type: text/plain; charset=utf-8'
];
mail($to, $subject, $message, implode("\r\n", $headers));
View captured emails in the Mailpit UI at the proxy URL configured above:
For information about developing and contributing to this plugin, please see our development documentation.
FAQs
A Mailpit integration plugin for Lando.
The npm package @lando/mailpit receives a total of 49 weekly downloads. As such, @lando/mailpit popularity was classified as not popular.
We found that @lando/mailpit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
Rustâs crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.

Security News
/Research
Socket found a Rust typosquat (finch-rust) that loads sha-rust to steal credentials, using impersonation and an unpinned dependency to auto-deliver updates.

Research
/Security Fundamentals
A pair of typosquatted Go packages posing as Googleâs UUID library quietly turn helper functions into encrypted exfiltration channels to a paste site, putting developer and CI data at risk.