我的处理程序看起来像:
@route("(address)@(host)", address=".+", host="example\.com")
@stateless
def START(message, address=None, host=None):
# Here is a complex validation of the address.
# It uses, for instance, information from a database.
# If the address is valid, mail is sent and the function returns
# The code ends up here if the address wasn't valid.
# How can I put the mail into the undelivarable queue?