Mail-in-a-box
mailinabox.email
Easy-to-deploy fully-featured and pre-configured SMTP mail server. It includes everything from webmail, to spam filtering and backups.
- Homepage: mailinabox.email
- GitHub: github.com/mail-in-a-box/mailinabox
- Web info: web-check.xyz/results/mailinabox.email
Mail-in-a-box Source Code
Author
Description
Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box.
Homepage
https://mailinabox.email/License
CC0-1.0
Created
21 Aug 13
Last Updated
07 Apr 24
Latest version
Primary Language
Python
Size
3,596 KB
Stars
13,256
Forks
1,400
Watchers
13,256
Language Usage
Star History
Top Contributors
-
@JoshData (1304)
-
@yodax (89)
-
@tdulcet (69)
-
@jvolkenant (31)
-
@fspoettel (26)
-
@dhpiggott (16)
-
@kiekerjan (16)
-
@ponychicken (14)
-
@mkropat (13)
-
@yeah (12)
-
@nstanke (11)
-
@nomandera (10)
-
@hjjg (9)
-
@aspdye (8)
-
@hughsw (8)
-
@h8h (8)
-
@brocktice (7)
-
@MariusBluem (6)
-
@ddavness (6)
-
@hija (6)
-
@badsyntax (6)
-
@randallsquared (6)
-
@jkaberg (6)
-
@binarykitchen (5)
-
@macmedia (5)
-
@0xFelix (5)
-
@guyzmo (5)
-
@biermeester (4)
-
@bronson (4)
-
@hnk (4)
Recent Commits
-
Joshua Tauberer (03 Apr 24)
Fixed bugs found by the ShellCheck linter (#1457)
-
Teal Dulcet (21 Dec 23)
Fixed SC2244: Prefer explicit -n to check non-empty string.
-
Teal Dulcet (21 Dec 23)
Quote echo commands to preserve whitespace.
-
Teal Dulcet (21 Dec 23)
Removed unnecessary bc commands.
-
Teal Dulcet (21 Dec 23)
Replaced the pwd command with Bash's $PWD variable.
-
Teal Dulcet (21 Dec 23)
Fixed SC2007: Use $((..)) instead of deprecated $[..].
-
Teal Dulcet (21 Dec 23)
Fixed SC2005: Useless echo.
-
Teal Dulcet (21 Dec 23)
Fixed SC2236: Use -n instead of ! -z.
-
Teal Dulcet (21 Dec 23)
Fixed SC2166: Prefer [ p ] && [ q ] as [ p -a q ] is not well defined.
-
Teal Dulcet (21 Dec 23)
Fixed SC2091: Remove surrounding $() to avoid executing output.
-
Teal Dulcet (21 Dec 23)
Fixed SC2046: Quote to prevent word splitting.
-
Teal Dulcet (21 Dec 23)
Fixed SC2148: Add a shebang.
-
Teal Dulcet (21 Dec 23)
Fixed SC2164: Use 'cd ... || exit' in case cd fails.
-
Teal Dulcet (21 Dec 23)
Fixed SC2086: Double quote to prevent globbing and word splitting.
-
Teal Dulcet (21 Dec 23)
Fixed SC2006: Use $(...) notation instead of legacy backticks `...`.
-
Joshua Tauberer (01 Apr 24)
v68
-
Joshua Tauberer (23 Mar 24)
CHANGELOG entries
-
Joshua Tauberer (23 Mar 24)
Update SMTP Smuggling protection to the 'long-term fix' * Revert "Guard against SMTP smuggling", commit faf23f150c5fa85c8e9af1e345d796d2c36a4577, by restoring the setting to its default. * Revert "[security] SMTP smuggling: update short term fix (#2346)", commmit e931e103fe1d6db81681e3c9732d21e9860acdcd, by restoring the setting to its default. * Set smtpd_forbid_bare_newline=normalize.
-
KiekerJan (23 Mar 24)
More robust reading of sshd configuration (#2330) Use sshd -T instead of directly reading the configuration files
-
Gio (23 Mar 24)
Mail guide: OS X -> macOS (#2306)
-
jvolkenant (23 Mar 24)
Silence "wal" output on setup using hide_output (#2368)
-
Joshua Tauberer (10 Mar 24)
Revert "Allow customizations to Roundcube settings to persist between updates by including a configuration override file, if it exists (#2333)" This reverts commit 1b8cdeb644bb1f5471e715bb63d024313d3e96f2. It didn't execute. I should have tried it first.
-
KiekerJan (10 Mar 24)
Take spamhaus return codes into account in status check and postfix config (#2332)
-
Crag-Monkey (10 Mar 24)
Allow customizations to Roundcube settings to persist between updates by including a configuration override file, if it exists (#2333)
-
Bastian Bittorf (10 Mar 24)
setup/preflight.sh: fix some minor shellcheck complaints (#2342) This file passes shellcheck now without errors. This paritally fixes #1457 - the former errors where: $ shellcheck setup/preflight.sh In setup/preflight.sh line 1: ^-- SC2148 (error): Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive. In setup/preflight.sh line 29: if [ $TOTAL_PHYSICAL_MEM -lt 490000 ]; then ^-----------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$TOTAL_PHYSICAL_MEM" -lt 490000 ]; then In setup/preflight.sh line 31: TOTAL_PHYSICAL_MEM=$(expr \( \( $TOTAL_PHYSICAL_MEM \* 1024 \) / 1000 \) / 1000) ^--^ SC2003 (style): expr is antiquated. Consider rewriting this using $((..)), ${} or [[ ]]. ^-----------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: TOTAL_PHYSICAL_MEM=$(expr \( \( "$TOTAL_PHYSICAL_MEM" \* 1024 \) / 1000 \) / 1000) In setup/preflight.sh line 38: if [ $TOTAL_PHYSICAL_MEM -lt 750000 ]; then ^-----------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "$TOTAL_PHYSICAL_MEM" -lt 750000 ]; then For more information: https://www.shellcheck.net/wiki/SC2148 -- Tips depend on target shell and y... https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... https://www.shellcheck.net/wiki/SC2003 -- expr is antiquated. Consider rewr...
-
Joshua Tauberer (10 Mar 24)
Fixed errors found by the Ruff Python linter (#2343)
-
Teal Dulcet (23 Dec 23)
Fixed ISC003 (explicit-string-concatenation): Explicitly concatenated string should be implicitly concatenated
-
Teal Dulcet (23 Dec 23)
Fixed F821 (undefined-name): Undefined name `e`
-
Teal Dulcet (23 Dec 23)
Fixed SIM114 (if-with-same-arms): Combine `if` branches using logical `or` operator
-
Teal Dulcet (23 Dec 23)
Fixed PLR5501 (collapsible-else-if): Use `elif` instead of `else` then `if`, to reduce indentation
Mail-in-a-box Website
Website
Mail-in-a-Box
Take back control of your email with this easy-to-deploy mail server in a box.
Redirects
Does not redirect
Security Checks
All 66 security checks passed
Server Details
- IP Address 94.76.202.152
- Hostname box.occams.info
- Location Maidenhead, England, United Kingdom of Great Britain and Northern Ireland, EU
- ISP Simply Transit Ltd
- ASN AS29550
Associated Countries
-
US
-
GB
Saftey Score
Website marked as safe
100%
Blacklist Check
mailinabox.email was found on 0 blacklists
- ThreatLog
- OpenPhish
- PhishTank
- Phishing.Database
- PhishStats
- URLhaus
- RPiList Not Serious
- AntiSocial Blacklist
- PhishFeed
- NABP Not Recommended Sites
- Spam404
- CRDF
- Artists Against 419
- CERT Polska
- PetScams
- Suspicious Hosting IP
- Phishunt
- CoinBlockerLists
- MetaMask EthPhishing
- EtherScamDB
- EtherAddressLookup
- ViriBack C2 Tracker
- Bambenek Consulting
- Badbitcoin
- SecureReload Phishing List
- Fake Website Buster
- TweetFeed
- CryptoScamDB
- StopGunScams
- ThreatFox
- PhishFort
Website Preview
Mail-in-a-box Reviews
More Mail Servers
-
A full-stack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker. Very complete, with everything you will need, customizable and very easy to deploy with docker.
-
A mail server with everything you need (SMTP, IMAP, webmail, NextCloud support..) using Docker.
About the Data: Mail-in-a-box
API
You can access Mail-in-a-box's data programmatically via our API.
Simply make a GET
request to:
https://api.awesome-privacy.xyz/networking/mail-servers/mail-in-a-box
The REST API is free, no-auth and CORS-enabled. To learn more, view the Swagger Docs or read the API Usage Guide.
About the Data
Beyond the user-submitted YAML you see above, we also augment each listing with additional data dynamically fetched from several sources. To learn more about where the rest of data included in this page comes from, and how it is computed, see the About the Data section of our About page.
Share Mail-in-a-box
Help your friends compare Mail Servers, and pick privacy-respecting software and services.
Share Mail-in-a-box and Awesome Privacy with your network!