I've built a Python app on Google App Engine which primarily handles incoming mail and does interesting based upon the email address at which the email is received.
I would like to use a custom domain for receiving emails as <some text>@<my app name>.appspotmail.com
is rather cumbersome.
Unfortunately I've been unable to figure out how to get this setup. I've gleaned from questions like this one: Custom Incoming Mail Domain With Google App Engine that there is no way to enable this directly in Google App Engine but that using some sort of DNS trickery--probably related to MX records--that I'll be able to forward the emails sent to <arbitrary string>@<custom domain>
to the real address at <arbitrary string>@<my app name>.appspotmail.com
.
Can someone explain how to do this? I think the basic problem would be my lack of knowledge with regards to DNS, but may also be associated with the particular restrictions associated with DNS and GAE apps.
The solution presented in this question: Directing email for a domain to AppEngine email receiving service? works explicitly for domains hosted by providers with the cPanel control panel, is there a more generic solution?