"post /_ah/mail/.+" Returning 404
I have been reading on stack overflow and but so far I have not found a solution that would work for me. I want to be able to handle incoming email to my app and eventually work wi
Solution 1:
Move the general handler
- url: .*
to after the specific handler
- url: /_ah/mail/info@egg-api.appspotmail.com
ie:
-url:/_ah/mail/info@egg-api.appspotmail.com# route everything to handle incomingscript:handle_incoming_email.applogin:admin-url:.*# This regex directs all routes to main.appscript:main.app
Otherwise the general URL rule is applied first, resulting in a 404.
Post a Comment for ""post /_ah/mail/.+" Returning 404"