Ikai I have tried to do this but I dont have any success.
my web.xml looks like this :<servlet>
<servlet-name>mailhandler</servlet-name>
<servlet-class>MailHandlerServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>mailhandler</servlet-name>
<url-pattern>/_ah/mail/*</url-pattern>
</servlet-mapping>
<security-constraint>
<web-resource-collection>
<url-pattern>/_ah/mail/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
I have a servlet called MailHandlerServlet gust like the tutorial at
google. when I try to send a mail to
*mailhandler*@
javasippy.appspotmail.com
(where javasippy is the ID of my app) I only get a mail from mail
delivery subsystem saying:"Delivery to the following recipient failed
permanently"
when I go to the address
javasippy.appspot.com/_ah/mail/ I get an
error saying initialization error
any ideas?
thanks in advanced, regards maxsa