PKب#Obbmg2dsn/__init__.py""" Generate rfc6522 delivery status notifications from the Mailgun API. """ __version__ = '0.4' PK)Nq ۀ))mg2dsn/_impl.py#!/usr/bin/env python3.6 """ Script to generate rfc6522 DSN messages from mailgun. """ import sys import os from io import BytesIO from textwrap import dedent from secretly import secretly import argparse import datetime import dateutil.parser import itertools import json import pytz from email.utils import make_msgid from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email import message_from_string from email.message import Message from email.mime.nonmultipart import MIMEBase from email.utils import formatdate import treq from twisted.internet.defer import inlineCallbacks, succeed from random import SystemRandom choice = SystemRandom().choice class UnexpectedResponse(Exception): """ The response wasn't expected. """ @inlineCallbacks def getAllEvents(domain, secret): eventsURL = "https://api.mailgun.net/v3/{domain}/events".format( domain=domain ) pageURL = eventsURL while True: thisPage = (yield ( yield treq.get(pageURL, auth=("api", secret), params={ "event": "failed", "severity": "permanent", }) ).json()) if not thisPage['items']: break for item in thisPage['items']: if ( ( item['flags'].get('is-authenticated') or item['flags'].get('is-delayed-bounce') # delayed bounces are (obviously) not authenticated. has # mailgun already validated this bounce? if not, we might # need to check to make sure the message ID originated from # a delayed bounce. ) and ( item['reason'] in ('bounce', 'suppress-bounce') ) ): bounced_at = pytz.utc.localize( datetime.datetime.utcfromtimestamp(item['timestamp']) ) print("found a bounce for", item['recipient'], 'on', bounced_at) bounce_uri = ( "https://api.mailgun.net/v3/{domain}/bounces/{recipient}" .format(domain=domain, recipient=item['recipient'].lower()) ) bounced = yield treq.get(bounce_uri, auth=("api", secret)) if bounced.code == 200: bouncedata = yield bounced.json() suppression_created = dateutil.parser.parse( bouncedata.get('created_at') ) itemSufficient = True if item['flags'].get('is-delayed-bounce'): if 'message' in item: messageId = item['message']['headers']['message-id'] originalPage = (yield (yield treq.get( eventsURL, auth=("api", secret), params={"message-id": messageId} )).json()) if originalPage['items']: original = originalPage['items'][-1] if 'storage' in original: item['storage'] = original['storage'] item['envelope'] = original['envelope'] else: itemSufficient = False print(" no message found with ID", messageId) else: itemSufficient = False print(" delayed bounce with no associated message?", item["id"]) if itemSufficient: yield deliverOneBounce(secret, item, domain) else: print(" item was insufficient; clearing but not sending.") delta = abs( (bounced_at - suppression_created).total_seconds() ) if item['reason'] == 'bounce': print(" clearing (original) bounce created", suppression_created, "with delta", delta) yield treq.delete(bounce_uri, auth=("api", secret)) else: print(" not clearing (suppression) bounce; delta:", delta, 'reason:', item['reason']) else: # drain the response bounced.content() print(" no suppression; not sending bounce.") pageURL = thisPage['paging']['next'] @inlineCallbacks def deliverOneBounce(secret, blob, domain, counter=itertools.count()): """ Deliver one bounce. """ msg = MIMEMultipart("report", **{"report-type": "delivery-status"}) if 'envelope' in blob: to_address = blob['envelope']['sender'] targets = blob['envelope']['targets'] else: to_address = blob['message']['headers']['from'] targets = blob['message']['headers']['to'] msg['to'] = to_address msg['from'] = '"Bounce Generator" '.format( domain=domain ) msg['subject'] = 'Delivery Status Notification: Deferred Bounce' msg['message-id'] = make_msgid("mg2dsn", domain=domain) originalMessageID = blob['message']['headers']['message-id'] msg['in-reply-to'] = originalMessageID msg['references'] = originalMessageID jsonified = json.dumps(blob, indent=2) statthing = MIMEBase("message", "delivery-status") original_bytes = dedent( """ From: no-user@no-host.invalid Subject: original message deleted Content-Type: text/plain Sorry, the mail administrator didn't run the script soon enough and the original message got garbage-collected in the meanwhile. """ ).strip() { 'severity': 'permanent', 'tags': [], 'timestamp': 1559455576.945882, 'delivery-status': { 'message': "smtp; 550-5.1.1 The email account that you tried to reach does not exist. Please try 550-5.1.1 double-checking the recipient's email address for typos or 550-5.1.1 unnecessary spaces. Learn more at 550 5.1.1 https://support.google.com/mail/?p=NoSuchUser q57si464420qtq.5 - gsmtp", 'code': 550, 'description': ''}, 'log-level': 'error', 'id': '1zh8moITS6KeKogPCxWO7Q', 'campaigns': [], 'reason': 'bounce', 'user-variables': {}, 'flags': {'is-delayed-bounce': True}, 'message': { 'headers': { 'to': 'twisted-python@twistedmatrix.com', 'message-id': '5cf36753.1c69fb81.b1fbf.2a0aSMTPIN_ADDED_BROKEN@mx.google.com', 'from': 'trac@twistedmatrix.com', 'subject': '[Twisted-Python] Weekly Bug Summary' }, 'attachments': [], 'size': 11223}, 'recipient': 'george@thecoalition.com', 'event': 'failed' } if 'storage' in blob: apiresponse = ( yield treq.get(blob['storage']['url'], auth=("api", secret), headers={"accept": ["message/rfc2822"]}) ) msgobj = yield apiresponse.json() if apiresponse.code == 200: original_bytes = msgobj['body-mime'] original = message_from_string(original_bytes) inner1 = Message() inner1['Reporting-MTA'] = 'dns;{domain}'.format(domain=domain) inner1['Arrival-Date'] = formatdate(localtime=True) inner1['Original-Envelope-Id'] = originalMessageID inner2 = Message() inner2['Original-Recipient'] = 'rfc822;' + targets inner2['Final-Recipient'] = 'rfc822;' + targets inner2['Action'] = 'failed' inner2['Status'] = '5.1.0 (Remote SMTP server has rejected address)' inner2['Remote-MTA'] = 'dns;' + blob['delivery-status'].get( 'mx-host', 'no-host.invalid' ) inner2['Diagnostic-Code'] = 'smtp;' + str(blob['delivery-status']['code']) statthing.attach(inner1) statthing.attach(inner2) msg.attach(MIMEText( dedent(""" This is the mail system at {domain}. We are sorry to inform you that the following message, which we believe you sent, could not be delivered. --- From: {sender} To: {recipient} Subject: {subject} --- """.format( domain=domain, sender=to_address, recipient=targets, subject=blob['message']['headers'].get( 'subject', '(no subject)' ), )), "plain", "utf-8" )) msg.attach(statthing) msg.attach(original) msg.attach( MIMEText( "\n---\n\noriginal mailgun delivery status failure follows:\n\n{}\n\n" .format(jsonified), "plain", "utf-8" ), ) response = yield treq.post( "https://api.mailgun.net/v3/{domain}/messages.mime".format( domain=domain ), auth=("api", secret), params={ "to": to_address, }, files={ "message": ("message", BytesIO(msg.as_string().encode("utf-8"))), } ) print("bounce sent:", response.code) print((yield response.json())) def main(reactor, argv): from twisted.python.filepath import FilePath cfg = FilePath(os.path.expanduser("~/.config/mg2dsn")) cfg.makedirs(True) defaultsPath = cfg.child("defaults.json") if defaultsPath.exists(): defaults = json.loads(defaultsPath.getContent().decode('utf-8')) else: defaults = {} unspecified = object() parser = argparse.ArgumentParser() parser.add_argument("domain", nargs="?", default=defaults.get("domain", unspecified)) namespace = parser.parse_args(argv[1:]) if namespace.domain is unspecified: print("Please specify a domain.") return succeed(1) defaultsPath.setContent(json.dumps(dict(defaults, domain=namespace.domain), indent=2).encode()) def action(secret): return getAllEvents(namespace.domain, secret) return secretly(reactor, action=action, system='api.mailgun.net', username=namespace.domain) def script(): from twisted.internet.task import react react(main, [sys.argv]) PK!HV'.%mg2dsn-0.4.dist-info/entry_points.txtN+I/N.,()M7J)γPz9VI..PK%K$/00mg2dsn-0.4.dist-info/LICENSEThe MIT License (MIT) Copyright (c) 2017 Glyph Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PK!HPOmg2dsn-0.4.dist-info/WHEEL HM K-*ϳR03rOK-J,/RH,szd&Y)r$[)T&UrPK!H%p+mg2dsn-0.4.dist-info/METADATAmQN0+@ ,@6xlK~- 7ΌS"ӱ p λ56<$ (+a*Z яeJA X{$ntxǺo>#)>PK!HB)Xmg2dsn-0.4.dist-info/RECORDuAB@bp؃Jk/^%0#&={_igI0I2x|uEnoqCEy*+2)88gzB?0tǽ23lY4ِp,'4a4E- fHj0m/>ބlR9xˉBl EpWBuev, }"a}tճ0L5>bˋi cF&΋\}V]΀_6.paQkoCFRރ. T] ԗi( Eh"ܮ֓9CzZѕz̈?6;a>~PKب#Obbmg2dsn/__init__.pyPK)Nq ۀ))mg2dsn/_impl.pyPK!HV'.%?*mg2dsn-0.4.dist-info/entry_points.txtPK%K$/00*mg2dsn-0.4.dist-info/LICENSEPK!HPO/mg2dsn-0.4.dist-info/WHEELPK!H%p+/mg2dsn-0.4.dist-info/METADATAPK!HB)X1mg2dsn-0.4.dist-info/RECORDPK2