Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AOL Attachments #79

Open
ghoti70 opened this issue May 29, 2012 · 2 comments
Open

AOL Attachments #79

ghoti70 opened this issue May 29, 2012 · 2 comments

Comments

@ghoti70
Copy link

ghoti70 commented May 29, 2012

  Lazy<MailMessage>[] msgs = imap.SearchMessages(SearchCondition.Unseen());
  foreach (var lazy in msgs)
  {
      MailMessage msg = lazy.Value;
      if (msg.Attachments.Count > 0)
            {
                   // do work
            }
   }

Attachments when message is from AOL do not trigger this code. I can forward the mail from another address, without making any changes to the attachment, and it will process.

Is there another way to detect / use attachments from AOL?

@ghoti70
Copy link
Author

ghoti70 commented May 31, 2012

Update:
I've now seen 2 out of 40 attachments detected by this code. There is something about their MIME encoding that is non-standard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@ghoti70 and others