473,499 Members | 1,710 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Sending Email with System that Has Antivirus Installed

Hello,

I am writing an application that processes and sends electronic mail using
Visual Basic that has no issues as is.

However, when running concurrently with an antivirus package that is
installed (such as Symantec Antivirus Corp. Client) any mail that the
application sends the message is only delivered AFTER my application closes
or if the antivirus software is disabled.

Since my application will be deployed to a variety of system I do not want
to require the client to disable the antivirus application just to use my
application.

I have tried to call a new thread to perform the process in the hopes that
when the thread finishes the emails will be sent but this does not occur. Is
there anything that I am missing? How is this accomplished normally?

Regards,

Christopher Koeber
Feb 28 '08 #1
3 1834
Hello,

your antivirus package may include a personal firewall which blocks outbound
communications on port 25 (which is usually used for email communication).

If this is the case, you need to reconfigure the firewall.

Kind regards,
Henning Krause

"Chris K." <ckoeber[Do Not Spam]@googlesemailservice.figureitoutwrote in
message news:97**********************************@microsof t.com...
Hello,

I am writing an application that processes and sends electronic mail using
Visual Basic that has no issues as is.

However, when running concurrently with an antivirus package that is
installed (such as Symantec Antivirus Corp. Client) any mail that the
application sends the message is only delivered AFTER my application
closes or if the antivirus software is disabled.

Since my application will be deployed to a variety of system I do not want
to require the client to disable the antivirus application just to use my
application.

I have tried to call a new thread to perform the process in the hopes that
when the thread finishes the emails will be sent but this does not occur.
Is there anything that I am missing? How is this accomplished normally?

Regards,

Christopher Koeber

Feb 28 '08 #2
Thanks for the reply. Does all applications that are developed with the .NET
Framework require end-user's to reconfigure their firewall just to send
email?

It would seem absurb to me as many applications send electronic mail with
Antivirus Software installed and no configuration is required - the mail is
scanned and sent.

Thank you for your time.

Chris K.

"Henning Krause [MVP - Exchange]" <ne***************@this.infinitec.de>
wrote in message news:OR**************@TK2MSFTNGP04.phx.gbl...
Hello,

your antivirus package may include a personal firewall which blocks
outbound communications on port 25 (which is usually used for email
communication).

If this is the case, you need to reconfigure the firewall.

Kind regards,
Henning Krause

"Chris K." <ckoeber[Do Not Spam]@googlesemailservice.figureitoutwrote in
message news:97**********************************@microsof t.com...
>Hello,

I am writing an application that processes and sends electronic mail
using Visual Basic that has no issues as is.

However, when running concurrently with an antivirus package that is
installed (such as Symantec Antivirus Corp. Client) any mail that the
application sends the message is only delivered AFTER my application
closes or if the antivirus software is disabled.

Since my application will be deployed to a variety of system I do not
want to require the client to disable the antivirus application just to
use my application.

I have tried to call a new thread to perform the process in the hopes
that when the thread finishes the emails will be sent but this does not
occur. Is there anything that I am missing? How is this accomplished
normally?

Regards,

Christopher Koeber

Feb 28 '08 #3


You can try this downloadable code:
http://sholliday.spaces.live.com/Blog/cns!A68482B9628A842A!138.entry

I have all the settings that are settable for different scenarios.

But that's what firewalls do, they block ports.

Then you program in "exceptions".

Do start / run
firewall.cpl
and you can look at the exceptions tab.

Then, if you have your own 3rd party firewall..you have to program
exceptions into that.


"Chris K." <ckoeber[Do Not Spam]@googlesemailservice.figureitoutwrote in
message news:24**********************************@microsof t.com...
Thanks for the reply. Does all applications that are developed with the
.NET Framework require end-user's to reconfigure their firewall just to
send email?

It would seem absurb to me as many applications send electronic mail with
Antivirus Software installed and no configuration is required - the mail
is scanned and sent.

Thank you for your time.

Chris K.

"Henning Krause [MVP - Exchange]" <ne***************@this.infinitec.de>
wrote in message news:OR**************@TK2MSFTNGP04.phx.gbl...
>Hello,

your antivirus package may include a personal firewall which blocks
outbound communications on port 25 (which is usually used for email
communication).

If this is the case, you need to reconfigure the firewall.

Kind regards,
Henning Krause

"Chris K." <ckoeber[Do Not Spam]@googlesemailservice.figureitoutwrote
in message news:97**********************************@microsof t.com...
>>Hello,

I am writing an application that processes and sends electronic mail
using Visual Basic that has no issues as is.

However, when running concurrently with an antivirus package that is
installed (such as Symantec Antivirus Corp. Client) any mail that the
application sends the message is only delivered AFTER my application
closes or if the antivirus software is disabled.

Since my application will be deployed to a variety of system I do not
want to require the client to disable the antivirus application just to
use my application.

I have tried to call a new thread to perform the process in the hopes
that when the thread finishes the emails will be sent but this does not
occur. Is there anything that I am missing? How is this accomplished
normally?

Regards,

Christopher Koeber


Feb 28 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4838
by: Bruce | last post by:
Has anyone tried sending web pages containing javascript to another user also using Outlook Express? Mine don't work on the other end - although I'm not sure if this is because they don't have...
3
1962
by: Steve Thurston | last post by:
Hi, I'm attempting to send emails for the first time using ASP.NET, so I'm hoping there's just a beginner's error going on here for me. But my emails aren't reaching their destination, and I...
8
4333
by: Frank | last post by:
I think I've confused myself completely here :-) I have used System.Web.Mail, but am not sure if this works with Exchange Server 5.5. I asked the client if they're email server supported SMTP, and...
9
3193
by: B-Dog | last post by:
I've built a small app that sends mail through our ISP's SMTP server but when I try to send through my local exchange server I get CDO error. Does webmail use SMTP or does it strictly rely on...
5
3905
by: Siv | last post by:
Hi, A little while ago I asked if anyone could help me with how to create an email using MS Outlook that contained an embedded picture file. Thanks to Jay Harlow I was able to get this working...
3
3195
by: Opa | last post by:
Hi, I'm trying to send mail from my ASP.NET application using the new System.Net.Mail classes. The code is fairly basic string SMTPServer = "smtp.atlanticbb.net"; SmtpClient client = new...
4
1720
by: InnoCreate | last post by:
Hi Everyone, I've added an error handler to some code and as part for the routine it logs to the application log and then sends the administrator an email. For some reason this email isn't...
3
2385
by: raj200809 | last post by:
when i m sending mail i received error from symantec Antivirus" Your email message was unable to be sent because your mail server rejected the message 550-5.7.1 the ip you’re using to send mail is...
3
914
by: Marcin Wiszowaty | last post by:
Hello all, I am using the code below in on my own machine to send email and it works just fine. VB console application. When i tried to run the same program from one of our servers it doesnt....
0
7132
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7009
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7178
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7223
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7390
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4602
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3094
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1427
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.