Locked[FAQ]E-mail does not work properly?

Author
APGvNext (Sam)
vNext Owner
  • Total Posts : 12439
  • Reward points : 218010
  • Joined:
  • Status: offline

E-mail does not work properly?

The following are common email related issues users run into:

  1. I enabled email in the admin control panel, but I still don't get any mail from my forum.
  2. Digest subscription failed to send out. Everything else works.
  3. Some users get spammed a lot with the exact same daily digest for a few days in a row.
  4. PM email notification failed to send out. Everything else works.
  5. Why does my mail hang out in the queue or pickup folders
  6. Why do messages end up in the badmail folder?
  7. Emails go out without any problem to the majority of users, but AOL users can't get any email from the server?
  8. A small portion of my members can't get subscription notifications, while others can.
 


Q: I enabled email in the admin control panel, but I still don't get any mail from my forum.

A: The first thing to do is enable email logging in web.config if you haven't done so (see the readme file that comes with the software for more info). Once it is enabled, email activities are logged in:

For older versions (before 3.6)

  ~/upfiles/logs/MailLog.maillog

It is just a text file, with the following info (one email activity per line):

Date In Universal Format|Mail Activity Name Sent To: recipient email address|subject:The subject of the mail|mailCC:if applicable|mailBCC:if applicable|SenderE:sender's email|isAsync:True/False|Success:True/False|Simulated:True/False

For version after 3.6

~/upfiles/logs/<date>-MailLog.maillog

It is an XML file, with self explanatory fields.

Regardless of the log format, the data itself is pretty self-explanatory. The things you want to look for are:
  1. Whether you see the email activities you are looking for (having trouble with) logged. Look at the Mail Activity Name section to find it.
    1. If not, see if there is anything in the admin CP's Error Log section. Make sure you import any un-imported errors first.
      1. If there are just too many errors in the log, first delete all logs, and then try the task that generates the mail again. Immediately after this, check the error log.
  2. What value the Simulated section records; This section exists because in our software we can simulate mail activity (if selected in the admin control panel under Side Wide Option - the Email drop down list)
    1. if true, it means the software did not encounter error prior to the actual send command (no error while preparing the email). The software did not send the mail however. So if this section records true, the Success section should record false (see below).
    2. if false, the software actually sent the mail. See below for further info.
  3. What value the Success section records
    1. if true, it means the mail was sent successfully. This indicates problems beyond our software (your mail server could be accepting but not relaying emails; recipients blocking your email, etc.)
    2. if false, it means the mail was not sent. Look for related error in the admin CP's Error Log section

Tip:
when you look for an email issue in the log, use your notepad to open the log and search for this phrase:

before 3.6: Success:False|Simulated:False

after 3.6: <Success>False</Success>

Whenever you see this, it means the software did try to send an email but failed. Scroll to the left to see what the email activity is.

The hidden content below are some email related info we have for the previous version. Take a look if you wish.

Click here to reveal the hidden content

This is rarely a problem if your forum is on a shared host. If you are hosting the forum at home or on your private network, please check the following and make sure everything is ready:
  1. If you select CDONTS in the admin panel, make sure you have the SMTP service running.
  2. If you are using CDONTS, make sure the pickup directory has the correct permission set for "guest" (you need write access at least). Otherwise you will see this error message: Permission denied . The following message is quoted from: http://www.4guysfromrolla.com/webtech/112298-1.shtml

    Getting a Permission Denied Error?
    Depending on the security settings on the Web server you may receive a permission denied error when executing the Send method. If this is the case check to make sure that the IUSR_MachineName has Full Control Modify permissions on the mail root Pickup directories (usually C:\InetPub\mailroot\Pickup). (For example, if your Web server' s name is Bob, ensure that IUSR_Bob has these permissions.)


    Make sure the internet guest account that you grant permission to is the internet guest account of your local machine, not the one from your active directory. Brian encountered the problem and figured it out:

    Just figured out the problem here. The issue was that I was putting in the IUSR and IWAM accounts for the Active Directory domain rather than for the local machine. My local machine is a member server of the domain.
  3. Exchange Server 2000 sp3 w/ CDONTS or CDOSYS problem:

    http://support.microsoft.com/default.aspx?scid=kb;en-us;Q324037

    Use Workaround 2 in the document.
  4. Mail relay rejected when you use CDOSYS:
    SMTP Mail Relay May Stop Working When Using IIS/MCIS SMTP Service and Non-RFC EHLO/HELO Command Format
    http://www.kbalertz.com/kb_240832.aspx
  5. If you select other components from the list, make sure you install them properly. Otherwise you will see this error: Server.CreateObject Failed .
  6. If you are using IIS 6 (Windows 2003), CDONTS is not available to you, and you will get the Server.CreateObject Failed error. Use CDOSYS instead.
  7. If you select CDOSYS using pickup directory, make sure you enter your pickup directory in the "mail server IP or pickup directory" textbox. It is located under the mail component selection. By default, pickup directory is C:\Inetpub\mailroot\Pickup . You will also have to make sure that the Internet Guest account (IUSR_MachineName) has modify rights to the pickup directory. That means the IUSR account must be able to write files to and delete files from the pickup directory.
  8. Does your e-mail server support SMTP relay? Is the connection between your www server and e-mail server blocked by firewall? Are you sure your mail server setting allows ASP program to send SMTP request?
  9. If you are using a shared host, go to the host's FAQ section and see what the requirements are for sending e-mail with ASP / ASP.NET. See what components they support as well as note down their SMTP server address.
In addition, make sure you know the components we support in our ASP versions, and they are:
  • ASPMail
  • ASPQMail (message queuing)
  • JMail (version 3 & 4)
  • ASPEMail
  • CDOSYS (both pickup directory & external SMTP)
  • CDONTS
  • SoftArtisans SMTPMail
Please note that by default, the forum subscription e-mail is sent via BCC, not TO. If your users cannot get subscription messages, make sure you check your e-mail server's BCC setting, or you can change the preference in the admin control panel to use "TO" to send mail instead.

Here is a list of e-mail related FAQs http://www.4guysfromrolla.com/webtech/LearnMore/Email.asp . Most of the time the problem is with your mail server configuration.

** .NET version (2.x) debugger
We put together a error logging feature in the tutorial forum (must be a license holder to access the message). Use the error logger to show what's wrong with your email setting.


Back to top


Q: Digest subscription failed to send out. Everything else works.

A: Make sure you set the permission for the ~/upfiles folder correctly. See here for help.
Also, make sure you have forum subscription enabled for that forum. The setting is inside the forum management interface for each individual forum.

Back to top


Q:
PM email notification failed to send out. Everything else works.

A: PM email notification will not be sent to the the original sender of the PM. You will only receive an email notification if someone else sent you a PM.

Back to top


Q: Some users get spammed a lot with the exact same daily digest in a row (around 10 minutes between each email).

A: The daily digest is stored on the file system, and deleted after sent. So, the forum software has problem deleting the digest.

The digest setting is in the admin control panel (Side Wide Options-> User Features 2/2). Try playing with the settings and see if it fixes the problem.

Or maybe the permission is wrong in your digest folder. Check the folder ~/upfiles/MailQueue/Daily and see if there are a lot of old digest in it.

Make sure the folder has Modify permission set.

Back to top


Q: I use IIS SMTP service (the pickup directory option) to send mail, but the mail test always fails.

A: Here are some suggestions for resolving this issue:
  1. if you get an error that says "cannot get IIS pickup directory", your IIS SMTP Service is not configured correctly.
    Check out http://torontoprogrammer....tory-error-in-asp-net/
  2. if your mail is not leaving the queue folder, check out Q273644
  3. if your mail is not leaving the pickup folder, and you are getting smtpsvc Event ID: 535 ("Virtual Server :The drop directory , for * could not be created.") in your event log, see Q288538
  4. make sure SMTP Virtual Server is running in Internet Services Manager
  5. check the event log for SMTP Service events
  6. turn on logging for your SMTP server, to see if the mail is even being attempted to be sent to the server
  7. make sure your smarthost and FQDN are configured correctly
  8. make sure your smarthost allows you to relay unconditionally (some require authentication)
  9. make sure your server can resolve the ip of your smarthost name - try using the IP of your smarthost to see if this is the issue
  10. restart the SMTP Service (or IIS altogether), and if that fails reboot the server, to see if this clears up the backlog
  11. make sure you are sending from / to a valid address / domain
  12. check any .rtr files in the queue folder - these can be caused by various mistakes in code or config
  13. check the server itself by setting up outlook express on the machine, using the same settings, and attempting to send mail
  14. if the machine is behind a firewall/router, make sure it has access to port 53
Back to top


Q:
Why do messages end up in the badmail folder?

A: If you are getting .bdr files in the badmail folder, this means the mail could not be sent for some reason. You might see an error like this, if you open up one of the .bdr files:

Unable to deliver this message because the following error was encountered:
This message is a delivery status notification that cannot be delivered.
Specific error code was 0xC00402C7

  • The most common cause is that you've either omitted the address in the From or To properties, or included an invalid e-mail address (see KB #267859 - fixed in Windows 2000 Service Pack 2)
  • Or, you've reinstalled the IIS SMTP service (see KB #290290), or your SMTP service isn't properly configured (see KB#265621)
  • Or, you are using Smart Host and a DNS server that does not support TCP queries (see KB #276347)
  • Or, you are attempting to run Microsoft Commercial Internet System on Windows 2000 (see KB #258918)

Back to top


Q:
Emails go out without any problem to the majority of users, but AOL users can't get any email from the server?

A: If the email problem only happens to users from a very limited number of domains, this indicates two things:
  1. The forum software works
  2. The DNS server responsible for managing Reverse DNS record for your machine is not configured properly
This problem usually happens to dedicated / colo server users. You need to make sure that the mail server machine IP has a PTR record on your own DNS server OR your network provider's DNS server.


Back to top


Q:
A small portion of my members can't get subscription notifications, while others can. 

A: It comes down to one of the following reasons:
  1. Their SPAM filters on their email servers are actively blocking mails from you
  2. Their SPAM filters on their email clients are actively blocking mails from you
  3. Their mail servers check for SPF record / reverse DNS entry (e.g. AOL users) which your mail server doesn't have (See this Q above)
  4. Your mail server blocks emails sent to certain domain

Back to top
post edited by APGvNext (Sam) -
#1
Jump to:
© 2013 APG vNext Commercial Version 4.3