vote up 1 vote down star

Hi

I need to send an email from my app, which will be running under medium trust. My current email sending code that works fine under full trust throws SecurityException under medium trust

[SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]

Examining my machine.config and allied files reveal that my SMTP access is restricted to Connect.

<SecurityClass Name="SmtpPermission" Description="System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>

and

<IPermission class="SmtpPermission" version="1" Access="Connect"/>

According to MSDN, Connect allows request on port 25 only. But Gmail servers work on port 587. Any workarounds? suggestions?

flag

58% accept rate

2 Answers

vote up 1 vote down

Gmail also Accepts Port 25 ; you just give Port 25; its Working For Me.,

link|flag
vote up 0 vote down

It seems the port is not 587. Please check this page.

And I am not an expert of the area you are discussing. But I feel use of some bridging mechanism would help you. I found this article regarding bridging and it might be help you.

link|flag
587 is a valid SMTP port for GMail. I have been using it for some time, before i got into this medium trust affair – Midhat May 11 at 16:06
and the bridging link you mentioned is interesting, but this would have helped me if I intended to receive email. I want to send it – Midhat May 11 at 17:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.