Since Saturday I have been encountering issues when sending emails to certain email addresses where I am receiving the following message
his is an automatically generated Delivery Status Notification.
THIS IS A WARNING MESSAGE ONLY.
YOU DO NOT NEED TO RESEND YOUR MESSAGE.
Delivery to the following recipients has been delayed.
A few of these are emails where I have attached my CV as I am looking for a job and I could potentially be barried due to the time delay.
Can you please help me resolve this
When signing in to this account I inadvertently typed the password in the username field without a space directly following the username. I realised this was wrong immediately but each time I attempt to log in now to my Hotmail account this incorrect username appears as an option. I want to eliminate this incorrect username option immediately. Please advise how I can do this.
Regards
Cliff Gardner
I have written a sample code that bring email of one folder of Outlook email account between given date range. I am using Java Mail API 1.5 and Java 7.
For getting messages, I have written below code that search emails since 1-Jan-1970 to before 30-Oct-2013 -
Date FutureDate = new Date(2013 - 1900, 9, 30, 00, 00, 00);
Date PastDate = new Date(1970 - 1900, 0, 1);
SearchTerm newerThen = new ReceivedDateTerm(ComparisonTerm.LE, FutureDate);
SearchTerm olderThen = new ReceivedDateTerm(ComparisonTerm.GE, PastDate);
SearchTerm andTerm = new AndTerm(olderThen, newerThen);
Message[] msg = folder.search(andTerm);
Last week, this method is working fine for me. After that I didn't make any changes in my Mail API or other code too. but today when I try to run above code that code is returning zero length msg i.e. no message is found since 1-Jan-1970 to before 30-Oct-2013, though my folder contains 204 emails between this range.
Surprisingly, the same code working fine to search email of folders of Gmail as well as of Yahoo IMAP account.
Is there any problem with IMAP in outlook mail account.
Recent Comments