Last active
October 26, 2024 18:18
-
-
Save alfonsrv/26c190e278c74c13f89fd596cc308d7b to your computer and use it in GitHub Desktop.
SMTP relay server in Python smtpd – forward incoming mails to remote SMTP server | simple smtp proxy server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
# Rau Systemberatung GmbH (rausys.de) | |
# Licensed under the GNU General Public License, Version 3 | |
import asyncore | |
import smtpd | |
import os | |
import logging | |
import logging.handlers | |
BIND_ADDRESS: str = '127.0.0.1' | |
BIND_PORT: int = 2525 | |
RELAY_HOST: str = 'smtp.remote.com' | |
RELAY_PORT: int = 25 | |
ALLOW_RELAY_FROM: list = ['127.0.0.1'] | |
LOG_FILE = 'smtp.log' | |
LOG_LEVEL = logging.INFO # logging.DEBUG // .ERROR... | |
os.chdir(os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))) | |
LOG_PATH = os.path.join(os.getcwd(), LOG_FILE) | |
logging.basicConfig( | |
format='%(asctime)s - [%(levelname)s] %(message)s', | |
level=LOG_LEVEL, | |
handlers=[ | |
logging.StreamHandler(), | |
logging.handlers.RotatingFileHandler( | |
LOG_PATH, | |
maxBytes=10000000, # 10 MB | |
backupCount=5 | |
) | |
] | |
) | |
logger = logging.getLogger(__name__) | |
class RelayService(smtpd.PureProxy): | |
def process_message(self, peer, mailfrom, rcpttos, data , **kwargs): | |
logger.info(f'Receieved a message from {mailfrom} to {rcpttos} ({peer})') | |
logger.debug(data) | |
if not RelayService.is_whitelisted(peer=peer): | |
logger.warning('Delivering peer not part of whitelist – rejecting') | |
return | |
refused = self._deliver(mailfrom, rcpttos, data) | |
def is_whitelisted(peer: tuple) -> bool: | |
return isinstance(peer, tuple) and len(peer) >= 1 and peer[0] in ALLOW_RELAY_FROM | |
if __name__ == "__main__": | |
logger.info('Running mini-mail relay') | |
smtp_server = RelayService( | |
localaddr=(BIND_ADDRESS, BIND_PORT), | |
remoteaddr=(RELAY_HOST, RELAY_PORT), | |
data_size_limit=0 | |
) | |
try: | |
asyncore.loop() | |
except KeyboardInterrupt: | |
smtp_server.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment