Problem in Mail deletion in POP3

Hi
I am using Pop3.
I opened folder using
folder.open (Folder.READ_WRITE);
setting flag for deletion
mimeMessages.setFlag (Flags.Flag.DELETED, true);
then in finally block closing the folder
if (mailbox.isConnected ()) {
if(folder != null && folder.isOpen()) {
try {
folder.close (true);
sometimes it is not deleting the messages.
Please suggest something.
Thanks
Atal

I am sorry but what do u mean by this? can u please explain in detail.
actually most of times it works fine but in few cases mail deletion is failing.
In my code: after folder.close (true); I just take a dump that comes successfully.
The MailBox folder has been closed after deleting the ToBeDeleted Mails, if any, by folder.close method.
MessageId of 1 th message which has been marked for Deletion : 1150475083.23686.prod-util-1.aspdeploy.com,S=57857
MessageId of 2 th message which has been marked for Deletion : 1150475117.23813.prod-util-1.aspdeploy.com,S=6808
MessageId of 3 th message which has been marked for Deletion : 1150475120.23818.prod-util-1.aspdeploy.com,S=9425
MessageId of 4 th message which has been marked for Deletion : 1150475140.23852.prod-util-1.aspdeploy.com,S=6121
these 4 messages were marked for deletion.
then close called. after
The MailBox folder has been closed after deleting the ToBeDeleted Mails, if any, by folder.close method.
message, it again tries to retrieve the folder with messages
Retrieving messages for mailbox ..
MessageId of the: 1 th message is 1150475083.23686.prod-util-1.aspdeploy.com,S=57857
MessageId of the: 2 th message is 1150475117.23813.prod-util-1.aspdeploy.com,S=6808
MessageId of the: 3 th message is 1150475120.23818.prod-util-1.aspdeploy.com,S=9425
MessageId of the: 4 th message is 1150475140.23852.prod-util-1.aspdeploy.com,S=6121
MessageId of the: 5 th message is 1150475338.13255.prod-util-2.aspdeploy.com,S=7458
MessageId of the: 6 th message is 1150475387.13339.prod-util-2.aspdeploy.com,S=6394
MessageId of the: 7 th message is 1150475393.13357.prod-util-2.aspdeploy.com,S=59238
MessageId of the: 8 th message is 1150475553.13615.prod-util-2.aspdeploy.com,S=86236
first 4 messages are same which were not deleted.
I have just attached the code. If you want to have a look then plz.
thanks
atal
package com.deploy.email;
import com.baltimore.jpkiplus.vaults.Vault;
import com.baltimore.jpkiplus.x509.JCRYPTO_X509Certificate;
import com.baltimore.jsmt.smime.JSMTException;
import com.baltimore.jsmt.smime.SMIMEv2;
import com.deploy.email.api.EmailException;
import com.deploy.email.api.InitException;
import com.deploy.email.api.ReceivedMessage;
import com.deploy.email.config.LogicalMailboxConfiguration;
import com.deploy.email.config.MailConfiguration;
import com.deploy.email.config.PhysicalMailboxConfiguration;
import com.deploy.email.util.SecureEmailHelper;
import com.sun.mail.pop3.POP3Folder;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.Vector;
import javax.mail.Address;
import javax.mail.AuthenticationFailedException;
import javax.mail.Flags;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Part;
import javax.mail.Store;
import javax.mail.UIDFolder;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.naming.NamingException;
import org.apache.log4j.Logger;
* This class spawns a thread for each mailbox and pulls messages from those mailboxes at a specified interval.
* Use start to initialize and stop to end the threads
* Bug Fixes
* - 8399 Broke out the mailServer into two separate potential servers; sendMailServer and receiveMailServer
* This class was updated to reflect the receiveMailServer setting
* 04/25/03 John Gemski
* - 10619 Added support for the Lotus Notes Client as per the 3.x fix. Copied logic from 3.x as detailed
* by Hari in the bug report
* 08/13/03 John Gemski
* - Added Email Client Calendaring support - John Gemski 10/21/2003
* @see com.deploy.email.EmailChannel
public class RetrieveMail implements Runnable {
/** Used to tell the threads when to stop */
private static boolean keepRunning=true;
//anish For nationwide
private int maximumsizeofinbox=-1;
/** The messages on the mail server that have been pulled but not deleted */
private HashMap messagesOnServer;
/** These are the mailbox types. Will only be one here for the Azetra impl */
private static List logicalMailboxes;
/** The list of running threads. Need to be tracked so they can be interrupted upon stop */
private static ArrayList receiveThreads;
/** A reference to the EmailChannel object, which may contain updated information. */
private static EmailChannel emailChannel = EmailChannel.getInstance();
private static Logger log = Logger.getLogger(EmailChannel.LOGGER_MODULE_NAME);
// Thread variables
/** the configuration for the physical mailbox from which the emails are being pulled. */
private PhysicalMailboxConfiguration tPhysicalMailbox;
/** the logical type (OLJB, ScanWorld, Task Response, Resume) that the physical mailbox thread is pulling for */
private String tLogicalType;
/** JavaMail Store */
private Store mailbox;
// Acceptable Protocols to retrieve mail from the mail server.
public static final int RECEIVE_MAIL_PROTOCOL_POP3 = 0;
public static final int RECEIVE_MAIL_PROTOCOL_IMAP = 1;
public static final int NUM_RECEIVE_MAIL_PROTOCOLS = 2;
public static String [] RECEIVE_MAIL_PROTOCOL_NAME;
/** Indicates whether or not the Secure Email feature is enabled. */
private static boolean secureEmailEnabled =false;
static {
RECEIVE_MAIL_PROTOCOL_NAME = new String [NUM_RECEIVE_MAIL_PROTOCOLS];
RECEIVE_MAIL_PROTOCOL_NAME [RECEIVE_MAIL_PROTOCOL_POP3] = "pop3";
RECEIVE_MAIL_PROTOCOL_NAME [RECEIVE_MAIL_PROTOCOL_IMAP] = "imap";
// FIX for socket hang issue (FIX PR 14253) while processing the mail
public static final String SOCKET_READ_ERROR = "No inputstream from datasource";
/** Constructor for new RetrieveMail thread.
* @param phys_config the mailbox configuration for a specific physical mailbox (i.e. [email protected])
* @param logical_type the logical type for this mailbox ("Resumes", "OLJB", "ScanWorld", or "TaskResponse")
private RetrieveMail(PhysicalMailboxConfiguration phys_config, String logical_type) {
this.tPhysicalMailbox = phys_config;
this.tLogicalType = logical_type;
* Retrieve email messages from a mail server for the particular physical mailbox indicated with the thread
* @throws EmailException if any fatal error occurs with the retrieval or processing of the incoming emails
private void retrieveMessages () throws EmailException {
Vector msgVector = new Vector ();
Vector deleteMsgVector = new Vector ();
ReceivedMessage [] recMessages;
MailConfiguration mailConfig = emailChannel.getMailConfiguration();
long maxReceivedEmailSize = mailConfig.getMaximumReceiveSize();
//Anish for Bug 20366 for Nationwide Patch 06
maximumsizeofinbox = mailConfig.getMaximumsizeofinbox();
// Synchronize on the mailbox object for the mailbox from which we
// are going to retrieve messages. We don't want more than one
// thread connected to a mailbox at a time, but we don't want to
// prevent multiple different threads from being connected to
// multiple different mailboxes simultaneously.
synchronized (mailbox) {
boolean throwingException = false;
Folder folder = null;
try {
/* Fix for 8399 - use the getReceiveMailServer call instead of the
* getMailServer call
// Connect to the server for receiving mail.
mailbox.connect (mailConfig.getReceiveMailServer(),
tPhysicalMailbox.getMailboxName(),
tPhysicalMailbox.getMailboxPassword());
// We are only interested in the "INBOX" folder.
folder = mailbox.getFolder ("INBOX");
// Open with write permissions as well, so we can delete messages from the server
folder.open (Folder.READ_WRITE);
// Anish for Bug 20366 for Nationwide Patch 06
//int numMessages = folder.getMessageCount ();
int numMessages1 = folder.getMessageCount ();
int numMessages = 0;
//log.info("Anish123 " + maximumsizeofinbox);
if (maximumsizeofinbox < 0)
numMessages = numMessages1;
else
          if (numMessages1 > maximumsizeofinbox) {
          numMessages = maximumsizeofinbox;
          //log.info("Anish try 1 " + numMessages1);
          else {
          numMessages = numMessages1;
          //log.info("Anish try 2 " + numMessages);
//     log.info("Anish try 4 " + numMessages);
// End by anish
if (numMessages > 0) { // There are messages to retrieve
Message [] messagesRaw = folder.getMessages ();
// We need to cast the messages to MIME message objects so
// that we can access some MIME message-specific functionality.
MimeMessage [] mimeMessages = new MimeMessage [numMessages];
for (int i = 0; i < numMessages; i++) {
mimeMessages = (MimeMessage) messagesRaw [i];
// We can only get messages totalling maxReceivedMessageSize bytes.
// Calculate how many messages we may get and still stay under the limit.
int numMessagesToRetrieve = 0;
int i = 0;
if( maxReceivedEmailSize > 0) {
int totalSize = 0;
numMessagesToRetrieve = 0;
boolean reachedLimit = false;
while ((i < numMessages) && !reachedLimit) {
int messageSize = mimeMessages[i].getSize ();
int newTotalSize = totalSize + messageSize;
if (newTotalSize > maxReceivedEmailSize) {
//if this is the first message then break out and process it
if( i == 0 ) {
i++;
totalSize = newTotalSize;
reachedLimit = true;
else {
totalSize = newTotalSize;
i++;
numMessagesToRetrieve = i;
i = 0;
else {
numMessagesToRetrieve = mimeMessages.length;
while( i < numMessagesToRetrieve )
boolean gotMessage = false;
String uniqueID = null;
if( numMessagesToRetrieve > 0 ) {
// Get the ID for the message
uniqueID = getUniqueID (mimeMessages[i], folder);
//By Anurag for Req#2907 to add Debugging Logs start
log.info("MessageId of the: " + (i+1) + " th message is " + uniqueID);
//By Anurag for Req#2907 to add Debugging Logs End
// Check if we have previoiusly retrieved this message.
Object value = messagesOnServer.get (uniqueID);
gotMessage = (value != null);
if (!gotMessage) { // Make sure message is filled in.
boolean processMessage = true;
try {
if(secureEmailEnabled) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
mimeMessages[i].writeTo(os);
InternetAddress[] senders = (InternetAddress[])mimeMessages[i].getFrom();
InternetAddress[] recipients = (InternetAddress[])mimeMessages[i].getRecipients (Message.RecipientType.TO);
Exception lastException = null;
Vault v = null;
for (int countRecipients = 0; countRecipients < recipients.length; countRecipients++) {
lastException = null;
v = null;
// try to get the recipient's address from the Vault hash table
log.info("Trying to get Vault for address: " + recipients[countRecipients].getAddress ());
v = SecureEmailHelper.getVault (recipients[countRecipients].getAddress ());
// we can't decrypt if we don't have a private key from the vault!
if (v == null) {
log.info("The PFX file for the email account: " + recipients[countRecipients].getAddress () + " is not found or invalid. Please correct.");
lastException = new EmailException(EmailException.REASON_UNKNOWN, "The PFX file for the email account: " + recipients[countRecipients].getAddress () + " is not found or invalid. Please correct.");
else {
break;
// if we came out with all exceptions, throw the last one we received.
if (lastException != null) {
log.error(lastException.getMessage(), lastException);
throw lastException;
SMIMEv2 smimer = new SMIMEv2(v);
// Set up input and output streams to read an S/MIME message
byte[] originalMessageBytes = os.toByteArray();
String origMessStr = new String(originalMessageBytes);
// The SMIMEv2 can't handle extra characters.
// Noticed that messages contained an "+OK", which was causing problems
// removed the entire line
if(origMessStr.startsWith("+OK")) {
int index = origMessStr.indexOf("\n");
origMessStr = origMessStr.substring(index+1);
byte[] revMessageStr = origMessStr.getBytes();
ByteArrayInputStream input_source = new ByteArrayInputStream(revMessageStr);
ByteArrayOutputStream output_sink = null;
boolean smimeRecognized=true;
boolean wasSigned=false;
boolean wasEncrypted=false;
// Making changes to reflect Baltimore's suggestion about layers
ByteArrayInputStream newMessage = null;
boolean done=false;
// According to Baltimore, there can be two layers of encryption
// inner and outer. It could be encrypted & signed, with it being either
// encrypted on the outer layer and signed on the inner, or vice versa.
// We want to ensure that this loop breaks out after either
// 1. there were 2 layers sign/encrypted or encrypted/signed
// 2. there was an error
int layers=0;
while(!done && layers < 2) {
output_sink = new ByteArrayOutputStream();
layers++;
     try {
// This step must be don't before any cryptographic operations. It lets the SMIMEv2 class
// figure out what it has as an input and where to place the output
smimer.attachStreams(input_source, true, output_sink, false, false);
catch (JSMTException jse) {
// This is common since unencrypted and unsigned data cannot perform this function
// Ideally, Baltimore says to use the type SMIMEv2.TYPE_DATA, but it never gets this
// far since this fails.
// We will skip the attempts to decrypt/verify the signature, since we know we won't
// be able to interpret what type of message it is.
smimeRecognized=false;
// Will only be one layer
done=true;
     log.debug("SMIME recognized: " + smimeRecognized);
if(smimeRecognized) {
// Get the S/MIME message type
int nextdata = smimer.getMessageType();
log.info("SMIME message type: " + nextdata);
if (nextdata == smimer.TYPE_SIGNED) { // Signed message
wasSigned=true;
boolean matchedSender = false;
// Didn't know you could have multiple "from" in an email address
// Right now, only one of the "froms" has to have a certificate
for(int s=0; s < senders.length; s++) {
// get the sender's address
String from_sender = senders[s].getAddress();
try {
// retrieve the certificates from the LDAP
JCRYPTO_X509Certificate[] senderCerts = null;
senderCerts = SecureEmailHelper.getCertificatesFromLDAP(from_sender);
if(senderCerts!=null) {
// verify() needs to take in a chain of certificates
com.baltimore.jsmt.pkcs7.CertificateChain cc= new com.baltimore.jsmt.pkcs7.CertificateChain();
// create certificate chain
for(int k=0; k < senderCerts.length; k++) {
cc.addCertificate(senderCerts[k]);
// verify the Certificate Chain against the message's certs
if(smimer.verify(cc)) {
// found a match, the message was verified
matchedSender=true;
break;
else
log.error("Could not verify the sender" + from_sender);
done=true;
catch(NamingException ne) {
log.error("There was a problem connecting to the LDAP for " + from_sender,ne);
done=true;
// if none of the senders matched, we need to not process
// the email message, since it will be unreadable
if(!matchedSender) {
StringBuffer sendString = new StringBuffer();
for(int s=0; s < senders.length; s++) {
String from_sender = senders[s].getAddress();
sendString.append(" : " );
sendString.append(from_sender);
processMessage = false;
log.error("Could not find certificate for any of the senders" + sendString.toString());
done=true;
else if (nextdata == smimer.TYPE_ENVELOPED) { // Encrypted message
log.debug("SMIME Encrypted message!");
wasEncrypted = true;
try {
log.debug("SMIME Decrypting message...");
// Decrypts the message
smimer.openEnvelope();
catch (JSMTException jse) {
// Could not decrypt message
log.error("Could not decrypt message: " + jse.getMessage (), jse);
processMessage = false;
done=true;
else {
log.debug("Unrecognized type");
// doesn't seem to get here since Baltimore toolkit doesn't accept
// nonencrypted, nonsigned emails (it should though). Keep here for future
// releases of the toolkit
done = true;
// Now that we have output_sink,
// retrieve the bytes
byte[] processedBytes = output_sink.toByteArray();
newMessage = new ByteArrayInputStream(processedBytes);
input_source = new ByteArrayInputStream(processedBytes);
else {
// only for the first time around, revert to original
if(layers==1) {
// Keep original message
newMessage = new ByteArrayInputStream(revMessageStr);
log.debug("wasSigned: " + wasSigned + " wasEncrypted: " + wasEncrypted);
// create the mime message again
mimeMessages[i] = new MimeMessage(emailChannel.getSession(),newMessage);
mimeMessages[i].setFrom (senders[0]);
mimeMessages[i].setRecipients (Message.RecipientType.TO, recipients);
// decrypted/verified data is automatically written to output_sink
input_source.close();
output_sink.close();
// If the message wasn't signed, we can still process the message
// if the settings allow the server to process unsigned messages
// If not, set the flag to not process this message
if(!tPhysicalMailbox.getAcceptUnsignedEmail() && !wasSigned) {
     log.info("Server configuration does not allow unsigned emails.");
processMessage = false;
// If the message wasn't encrytped, we can still process the message
// if the settings allow the server to process unencrypted messages
// If not, set the flag to not process this message
if(!tPhysicalMailbox.getAcceptUnencryptedEmail() && !wasEncrypted) {
log.info("Server configuration does not allow unencrypted emails.");
processMessage = false;
if(processMessage) {
MimeMessage m = mimeMessages[i];
if( maxReceivedEmailSize > 0 && m.getSize() > maxReceivedEmailSize ) {
try {
m = constructDummyMsg( m, m.getSize() );
catch (Exception e) {
// Add message to a list of messages to be deleted after
// finished retrieving messages.
deleteMsgVector.addElement (uniqueID);
ReceivedMessage receivedMessage =
new ReceivedMessage (m, uniqueID);
msgVector.addElement (receivedMessage);
else {
log.info("Email could not be processed.");
deleteMsgVector.addElement (uniqueID);
catch (EmailException ee) {
log.error("Email Exception", ee);
deleteMsgVector.addElement (uniqueID);
} // mail socket hang fix
catch (javax.mail.MessagingException e) {
String message = e.getMessage();
// if it's a socket hang issue due to network outage, we want to logout and refetch the messages.
if (message.equals(SOCKET_READ_ERROR)) {
log.error("Socket timed out. Closing the connection", e);
messagesOnServer.clear();
throw new EmailException(

Similar Messages

  • Since installing mountain lion i have a problem with mail. when i delete a message close  and open mail the message has come back. please help!

    Since installing Mountain Lion i have a problem with Mail. I delete a number of messages from the same person but keep the newest message in my Inbox. I actually delete them from the Trash. The next time i open Mail the deleted messages are back again. Can anybody please help as this is getting annoying. Thanks in Anticipation.

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash.
    Triple-click the line below to select it, then copy the selected text to the Clipboard (command-C):
    find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 -o -acl \) 2> /dev/null | wc -l
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    The output of this command, on a line directly below what you entered, will be a number such as "41." Please post it in a reply.

  • I'm having problems with excessive email usage on my iphone 4/ios 7. Just noticed that (settings/usage) it was using 900  mb. I deleted all my mail, deleted the mail account, and it still says it's using 661 mb. My ipad uses a fraction of that.

    I'm having problems with excessive email usage on my iphone 4/ios 7. Just noticed that it (settings/usage) was using 900+ mb. I deleted all my mail, deleted the mail account, turned the phone off and back on, downloaded any remaining mail on the server to Outlook on my computer, and it still says it's using 661 mb. My ipad uses a fraction of that.
    Background: I recently (December) bought an ipad and set up icloud for contacts and calendar, but NOT mail. My email provider is Verizon. I use computer, iphone, and ipad to check my email; eventually I download it from the server using Outlook on the computer and then delete any remaining emails from the phone and ipad. I can't find info on this problem anywhere.

    Howdy there COUGAR444,
    It sounds like your iPad all of a sudden seems to be restarting out of no where. If you haven't called AppleCare yet, I would start with quitting either the app that seems to be causing the issue, or all the apps if a single doesn't seem to be the culprit. 
    iOS: Force an app to close
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the device and test the issue again:
    iOS: Turning off and on (restarting) and resetting
    If the issue persists, backup your device to iTunes, then restore it as new and verify that it works. 
    How to erase your iOS device and then set it up as a new device or restore it from backups
    If it does, then restore your backup to either verify it still works and the software just needed reinstalled, or isolate the issue to the backup file itself. 
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • Problem in sending mail for a pop3 account using transport.send(msg)

    hi,
    i am having problem in not able to send mail for a pop3 account ...
    I have written an email gateway which listens to my pop3 account...on email arrival it listens nd extract the contents and send it as an sms msg...upon failure it needs to deliver the mail to sender id.I am using quartz to listen.
    i am using jboss for server and java mail api.
    here is my code
    MimeMessage mimemsg = new MimeMessage(session);
                                                           mimemsg.setFrom();
                                                           mimemsg.setRecipients(Message.RecipientType.TO, to);
                                                           mimemsg.setSubject(subject);
                                                           mimemsg.setText(parsedText);
                                                           mimemsg.setSentDate(new Date());
                                                           mimemsg.setContent(strBuff.toString(), "text/html");
                                                           System.out
                                                                                    .println("Before sending mail");
                                                           Transport.send(m);
                                                                System.out.println("message sent successfully");
    excepition i am getting is :
    2008-09-12 11:45:11,140 INFO [STDOUT] Before sending mail
    2008-09-12 11:45:11,140 ERROR [STDERR] javax.mail.IllegalWriteException: POP3 messages are read-only
    2008-09-12 11:45:11,140 ERROR [STDERR]      at com.sun.mail.pop3.POP3Message.saveChanges(POP3Message.java:438)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at javax.mail.Transport.send(Transport.java:97)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at com.openstream.emailgateway.sources.ListenEmailGateway.execute(ListenEmailGateway.java:422)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.GeneratedMethodAccessor89.invoke(Unknown Source)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:495)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:116)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:109)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:138)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:402)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.Container.invoke(Container.java:960)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.GeneratedMethodAccessor88.invoke(Unknown Source)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:195)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.ejb.plugins.inflow.MessageEndpointInterceptor.delivery(MessageEndpointInterceptor.java:263)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.ejb.plugins.inflow.MessageEndpointInterceptor.invoke(MessageEndpointInterceptor.java:140)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:74)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at $Proxy73.execute(Unknown Source)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.resource.adapter.quartz.inflow.QuartzJob.execute(QuartzJob.java:57)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.quartz.core.JobRunShell.run(JobRunShell.java:203)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    2008-09-12 11:45:11,171 INFO [STDOUT] USer flag ..[Ljava.lang.String;@115c6cb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    as i am writing the message failure details to a template...
         //on failure to send messages , reply to the sender about the failure
                                                                strBuff= tempDetail.writeToTemplate(smsmsg);     
    is that bcoz i am getting an exception

  • Niche iPhone (ios6?) e-mail problem - can't delete

    Hi there,
    I was lucky enough to get an iphone 5 on the release day.  I connected my iPhone 5 account with my work e-mail (using exchange) and with other pop e-mail accounts that I have.  Push is working great on my work e-mail account, however, I seem to be having an e-mail deletion problem.  Here is what happened:
    I received a calendar invite from a co-worker in e-mail format.  I accepted the invite through outlook on my computer (when you accept it, it auto-deletes the invite e-mail from your inbox and replies with an acceptance notice).  So now, my work inbox is empty.  However, on my iphone, it still shows the invite in the inbox.  When I attempt to delete the e-mail from my iphone, it says that the message cannot be moved or deleted, so it just stays there.  The only way to get rid of the e-mail is to delete that mail account, and then re-add it to my phone.
    This also happened on a separate pop-connected e-mail address.  I deleted an e-mail through a webmail interface, the iphone wouldn't see that the e-mail was deleted (even after attempting to sync multiple times) and when attempting to delete it through the Mail app, I received a message stating that the e-mail can't be deleted or moved.
    Anyone else having this problem, any suggestions?
    Thanks for the help.

    If your device is signed into an old iCloud ID, and if it is an earlier version of your current ID*, do the following:
    Make sure you are signed into iMessage and FaceTime with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).
    * If that's not the case, you'll have to contact the Apple account security team and ask for assistance resetting the password for the old ID: Apple ID: Contacting Apple for help with Apple ID account security.  You'll have to be able to prove your identity to them before they will do this.

  • Apple Mail delets messages on the Server POP3

    Apple Mail delets messages on the Server Method: POP3. I use the preference to delete message if they where transfered out of the incoming box.
    Since 10.6 this seems not longer to work, what is going wrong?
    System: 10.6.4

    Hi there. This feature should work, as I have 10.6.4 and use it personally. Note that once a message is deleted from POP mail cannot put it back, so this setting once checked only applies to new messages.
    Make sure you look at the options about removing the message from the server when it's removed from the trash or after xx days.
    If these are set correctly, you may find luck in unchecking the box for leaving the messages on the server and then rechecking it.
    Lastly, you could try deleting the mail account and recreating it.
    Regards,
    -Ryan

  • Problem collecting mail since 8th/9th - almost a s...

    Is anyone having or aware of any general problems or issues collecting email since about Wednesday night 8th/9th June? -- I use OE.
    BT has been my ISP for several years, so I have BT addresses as well as some set up with a former ISP (tesco.net) which are also of course handled via the BT Yahoo account. All are set up correctly (I've checked the settings are in place as they should be, and haven't been varied/altered for any reason), and they've always all worked without any problems at all since joining BT.
    But between switching off the system in the early hours of Thursday morning and booting up again later in the day, collecting mail has been a nightmare. At first it seemed as if clicking Send/Receive froze it up, but I realised later on it wasn't actually stalling altogether -- it's just very, VERY slow. For instance it takes the best part of an hour to download one small message of a line or two, maybe about 2kb.
    Outgoing SMTP mail for both lots of accounts via mail.btinternet.com is no trouble at all and works completely normally at the usual speed and with no issues. Only incoming mail is affected, but I can't think it's anything to do with the Tesco POP3 address, because it's not only affecting mail on those accounts, but the BT ones as well (mail.btinternet.com again). They're all having the same problem.
    Of course I can check both sets of inboxes online for incoming messages, but it's a hassle as I use the various different accounts for different categories of mail, so it's less straightforward than the convenience of a desktop client which I'm so used to, where they come in to one place and I'm able to browse all my mail from there, as well as store it on the system and compose at leisure offline. Online means logging in and out of each one individually. I just hate webmail... call me old-fashioned!
    Internet browsing is unaffected, with Firefox (and IE). My BB package renewed at the beginning of the month and I changed from Option 3 to Option 2, but (a) this was about a week before the problem began, and (b) I'm not sure it would have any bearing anyway.
    So any general issues anyone's aware of which are going on at the moment, or any ideas?
    Many thanks.

    I still have this problem. Yesterday I thought it might have sorted itself out, but no such luck. As I have several different email accounts (and they all have the same trouble whether it's a BT address or others from another ISP), I've only been trying to download mail for one account at a time (in turn) with OE, instead of all accounts at once.
    Yesterday seemed no different to begin with, than it had been for the previous week -- clicked Receive for one of the accounts, the dialog box showed 3 messages to download, and as usual it was slow, slow, SLOW. The first message took all of about 50-55m to come in, and it was only 4kb! But then suddenly the other 2 following it came in at normal speed in a flash, as they should.
    Tried another account where I knew there was mail in (having seen it on the server). They came in normally too. And so did all the rest of the accounts. Brilliant! -- I thought FINALLY, whatever the cause had been, I was through it. And I was thrilled as I'd been able to get all my mail in up to date at one sitting instead of the laborious process of going through each account in turn and having to walk away from the machine between them to do something else.
    But a few hours later when I collected again, it was back to ultra-slow again. And today the same.
    I've been searching around for some answers without a lot of luck: quite a few seem to report an overall slowness problem, or they're having problems sending mail out, but not so much my situation which only affects incoming mail. As I posted before, I can send normally, and the browser's also unaffected (so it's not the connection) -- it only happens with incoming mail.
    Eventually I came across this 2009 page which seems to sum it up exactly:
    http://www.nologinspace.com/show item.aspx?itemf=187&title=BT Internet POP Problems and Issues
    There's no solution given, but it seems to nail the problem I'm having, and suggests it's some unknown issue to do with BT's POP servers.
    Anyone come across this problem, or able to throw any more light on it? Or know what (if anything) can be done?
    The only slight difference between their description and me is I don't get a timeout or error message, just sometimes the prompt "Your server has not responded in xxx seconds" and asking if I want to Stop or Wait. If that appears I tell it to wait, as my experience over the last week is the mail does arrive eventually if I wait long enough. Unlike them I haven't been deleting mail off the server either (except any spam), for the same reason. I've done that very occasionally in the past if one particular message persistently seems to be causing a logjam, but this doesn't strike me as one of those scenarios, because it's doing it over and over and over again, even when all previous mail has been cleared (excrutiatingly slowly!) from the accounts a few hours earlier, and every inbox is starting from empty with a completely new batch of different messages.
    Any thoughts and possible solutions really appreciated.

  • Hi I am having problems removing mail from trash folder. Can anyone help please

    Hi I am having problems removing mail from trash folder. I can send mails to the folder but cannot delete them permanently from the trash folder. I am using Iphone 3G and anm up to date with OS. Can anyone help please

    Check that there isn't a different Trash folder to the one with the proper Trash symbol on it.
    If you see one in your list of folders rather than a separate one, highlight it, then click on Mailbox...Use this mailbox for...Trash

  • Problem with mail for exchange after update on E72...

    Hi everyone,
      I updated Nokia E-mail to ver 3.9 on E72. Now I am facing  a problem with mail for exchange. I have configured gmail on mail for exchange. I recieve a warning that "unable to sync contact administrator if problem persist". It started to pop up just after the update was over and is very frustrating. Even previously i used to recieve mails instantly but now it generally takes half an hour for me to recieve them. I deleted and created mail for exchange several times but to no avail.
    Also i am not able to automatically recieve mails other emails which i have configured. every time I have to manually download them everytime.
    Can anybody suggest a way out.
    Thanks
    Anil

    It could be a problem if you're using your network's connections...
    I was on a Pay & Go tariff with o2 some time ago, and needed secure connections for various things, o2 told me they didn't provide secure connections on Pay & Go tariffs...
    Could be worth checking with them to make sure it's supported.
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Trying to change account type in MAIL to allow POP3 to connect to my Yahoo?

    Can anyone help me with this mail feature...
    I am trying to add my yahoo mail account to the MAIL option/ feature on my MAC, and it is not letting me without signing up to Yahoo Plus account.
    However, I have found this site:
    http://help.yahoo.com/l/us/yahoo/smallbusiness/bizmail/pop/pop-03.html
    and
    http://www.emailaddressmanager.com/tips/mail-settings.html
    Which states you can enter it through POP3 account type.
    I have tried this By going to MAIl> PREFERENCES> ADD ACCOUNT.
    then when I add in account type from the drop down menu it only has POP available and NOT POP3 option like it states in that web site to use.
    And when I try to add the account I get this message:
    Logging in to mail server “plus.pop.mail.yahoo.com” failed. This server may require an additional fee for Yahoo! POP access. For more information, visit Yahoo! Mail Plus. If you continue, you might not be able to receive messages.
    So I have tried to continue and just add the outgoing and ingoing info that the site stated and I still can't get it to work. I think the main problem is getting the POP changed to POP3?
    How do I do this. So I can use my yahoo account on the MAIL feature.
    Is there a new updated MAIL feature? I have the MAIl Version 4.1 (1076)?
    Does this only let you use Yahoo Plus mail? I don't want to upgrade since it charges you a fee to have this e-mail account.
    Any information?
    Kelli

    So at the previously mentioned web-site: It stated
    Yahoo! Mail Settings
    Yahoo Mail offers standard POP3 access for receiving emails incoming through your Yahoo mailbox, by using your favorite email client software. To setup your email client for working with your Yahoo account, you need to select the POP3 protocol and use the following mail server settings:
    Yahoo Incoming Mail Server (POP3) - pop.mail.yahoo.com (port 110)
    Yahoo Outgoing Mail Server (SMTP) - smtp.mail.yahoo.com (port 25)
    POP Yahoo! Mail Plus email server settings
    Yahoo Plus Incoming Mail Server (POP3) - plus.pop.mail.yahoo.com (SSL enabled, port 995)
    Yahoo Plus Outgoing Mail Server (SMTP) - plus.smtp.mail.yahoo.com (SSL enabled, port 465, use authentication)
    The top one--- I thought is for regular Yahoo mail and the other is for Yahoo Plus mail?
    SO this is not correct there are not 2 different servers? The only way to get it is by signing up through Yahoo Plus? Wow I thought there was a different way.
    thanks~

  • Problems with mail after every shutdown

    I posted a few days ago when mail kept crashing following the security update (probably due to me not closing all applications before installing).
    I managed to get mail working again by resetting the junk mail filter.
    However, since then I have had problems with mail every time I restart my computer. Every morning, it mail crashes when I open it. I have fixed it a few times by quickly deleting select messages from my inbox before it crashes, but today I can't even do that. Resetting junk mail filter doesn't seem to work now. It's weird because once I get mail open I can close/open with no problem. I only have problems again after I have shutdown the computer.
    I verified the start up disk and permissions - there were no problems there - and I also checked for corrupted fonts (I have been reading all the suggestions posted on this site to people having similar problems).
    The console log reads:
    Jun 1 09:40:34 su-pwbk crashdump[218]: Mail crashed
    Jun 1 09:40:34 su-pwbk crashdump[218]: crash report written to: /Users/shancock/Library/Logs/CrashReporter/Mail.crash.log
    And the crash report reads:
    Date/Time: 2007-06-01 09:53:53.492 -0700
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [61]
    Version: 2.1 (752)
    Build Version: 1
    Project Name: MailViewer
    Source Version: 7520000
    PID: 221
    Thread: 3
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x9a397784
    Thread 0:
    0 libSystem.B.dylib 0x9000b448 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b39c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x9329b1b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x93780ae4 _DPSNextEvent + 384
    8 com.apple.AppKit 0x937807a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.AppKit 0x9377ccec -[NSApplication run] + 472
    10 com.apple.AppKit 0x9386d87c NSApplicationMain + 452
    11 com.apple.mail 0x000871d8 0x1000 + 549336
    12 com.apple.mail 0x00087080 0x1000 + 548992
    Thread 1:
    0 libSystem.B.dylib 0x900553a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90055204 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a2b9d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x900553a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90055204 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a2b9d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 3 Crashed:
    0 com.apple.MessageFramework 0x9a397784 -[ABAddressBook(MailAdditions) _bestRecordMatchingFormattedAddress:inSubscribedContent:] + 0
    1 com.apple.MessageFramework 0x9a2dc7f0 -[ABAddressBook(MailAdditions) bestRecordMatchingFormattedAddress:] + 44
    2 com.apple.MessageFramework 0x9a2dc6c8 -[MailAddressManager bestRecordMatchingFormattedAddress:] + 184
    3 com.apple.mail 0x00040ee0 0x1000 + 261856
    4 com.apple.mail 0x00037014 0x1000 + 221204
    5 libobjc.A.dylib 0x90a461f4 objc_msgSendv + 180
    6 com.apple.Foundation 0x92bdec94 -[NSInvocation invoke] + 944
    7 com.apple.MessageFramework 0x9a2b0800 -[MonitoredInvocation invoke] + 144
    8 com.apple.MessageFramework 0x9a2b9e80 -[InvocationQueue _drainQueue] + 416
    9 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x900553a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...apple.AddressBook.framework 0x94e35cac -[ABRemoteImageLoader workLoop] + 132
    3 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 3 crashed with PPC Thread State 64:
    srr0: 0x000000009a397784 srr1: 0x000000000008f030 vrsave: 0x0000000000000000
    cr: 0x24000248 xer: 0x0000000020000004 lr: 0x000000009a2dc7f0 ctr: 0x000000009a397784
    r0: 0x000000009a2dc7f0 r1: 0x00000000f0202ef0 r2: 0x00000000a0001fac r3: 0x0000000004a00490
    r4: 0x000000009a3ec540 r5: 0x0000000004a5cac0 r6: 0x0000000000000000 r7: 0x000000006e636f63
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x0000000000000001
    r12: 0x000000009a397784 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x00000000001b0000 r19: 0x0000000004a229a0
    r20: 0x0000000000000002 r21: 0x0000000000000000 r22: 0x0000000004a2f110 r23: 0x00000000001b0000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x0000000004a5cac0
    r28: 0x0000000004a5cac0 r29: 0x0000000004a00490 r30: 0x00000000aa2b5048 r31: 0x000000009a2dc610
    Model: PowerBook5,2, BootROM 4.7.1f1, 1 processors, PowerPC G4 (1.1), 1 GHz, 768 MB
    Graphics: ATI Mobility Radeon 9600, ATY,RV350M10, AGP, 64 MB
    Memory Module: SODIMM0/J25LOWER, 256 MB, DDR SDRAM, PC2700U-25330
    Memory Module: SODIMM1/J25UPPER, 512 MB, DDR SDRAM, PC2700U-25330
    Modem: LastDash, Euro, V.92, 4.0, APPLE VERSION 2.6.6
    Bluetooth: Version 1.7.14f14, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    Parallel ATA Device: MATSHITACD-RW CW-8123
    Parallel ATA Device: TOSHIBA MK6026GAX, 55.89 GB
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft 3-Button Mouse with IntelliEye(TM), Microsoft, Up to 1.5 Mb/sec, 500 mA
    Would greatly appreciate a more permanant fix to this problem!
    Thanks, Su
    PowerBook5,2   Mac OS X (10.4.9)  

    As I said in the other thread, in your case Mail was crashing because of a problem with Address Book, so it should be no surprise that resetting the junk filter didn’t really fix the problem. It would have been more appropriate to post back there instead of starting a new thread...
    If Address Book itself works fine, the problem is probably the Previous Recipients list that Mail stores in the Address Book database. If you can do this without Mail crashing, in Mail open Window > Previous Recipients and remove all the entries from there.
    If that doesn’t work, you’ll have to re-create the entire Address Book database:
    1. If you have a .Mac account and .Mac synchronization of Address Book data is enabled either in Address Book > Preferences > General or in System Preferences > .Mac, disable it before proceeding.
    2. You may also need to reset the entire sync history (iSync > Preferences > Reset Sync History) to avoid synchronization issues if you use .Mac or iSync to synchronize your Address Book with other computers or devices.
    3. Open Address Book.
    4. As an extra safety measure, do File > Back up Address Book and save the backup wherever you wish.
    5. Go to Address Book > Preferences > vCard, set the vCard Format to 3.0 and check Export notes in vCards. Close the Preferences window when done.
    6. Select the All group in the main Address Book window and do File > Export Group vCard (the command should read “Export Group vCard”, not just “Export vCard”).
    7. Quit Address Book, Mail, and any other applications that might use Address Book for something. Or just quit all applications to be on the safe side.
    8. In the Finder, go to ~/Library/Application Support/ and move the entire AddressBook folder out of there, e.g. to the Desktop (to be deleted after fixing the problem and making sure you don’t miss anything).
    9. Check whether the problem is fixed now. If it is, you may be able to restore your contacts without the problem happening again by opening Address Book and doing File > Import > vCards to import the previously exported cards back into Address Book.
    10. If the problem has been fixed and .Mac synchronization of Address Book data was enabled at the beginning, enable it again, go to System Preferences > .Mac > Advanced, click Reset Sync Data, and choose the appropriate options to reset the Address Book data stored on the .Mac server with the data locally stored on the computer, i.e. sync data must flow from the computer to the .Mac server.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • I have a problem with mail autofilling info email addresses. Emails sent to me the from looks like this: Holiday in the United States email address . I have no idea what this Holiday in the United States is...How can I fix/change to my name?

    I have an irritating problem with mail autofilling info in email addresses. Emails sent to me the from looks like this: Holiday in the United States <my email address>. I have no idea what this Holiday in the United States is or how it got to be there...How can I fix/change to my name?
    I fixed the To: autofilling incorrectly by deleting my email address from the Previous Recipients List, but is there a way to stop that from coming up on emails that I receive?

    Have you checked your Mac address book? If your email is saved somewhere in your address book with the name "Holidays in the United States" it might be adding the name automatically in Mac Mail.
    Alternatively, try this:
    Delete an Email Address from Auto-Complete in Mac OS X Mail
    To remove an email address from the auto-complete list in Mac OS X Mail:
    Start typing the recipient's address or name in a new message.
    Select the desired address from the auto-complete list as if you'd compose an email to them.
    Click the small down arrow in the recipient.
    Select Remove from Previous Recipients List from the menu.
    You can also search for the unwanted address directly in the previous recipients list:
    Select Window | Previous Recipients from the menu in Mac OS X Mail.
    Highlight the address you want to remove.You can highlight multiple addresses by holding down the Command key.
    Click Remove from List.
    Source: About.com

  • Has anyone an Intermittent Problem sending mail from Mac OS X (10.6.8)?

    I have a Mac mini operating on Mac OS X(10.6.8) Snow Leopard. In the last couple of weeks I have been having intermittent problems sending mail from Mac MAIL, especially if I hit the reply button.  It whirls around for ever and then tells me to 'Try Later' or 'Try Again'.  When I shut down my computer and open up mail again, I hear the mail whizzing off.  I have just tried it now and it went in the time that it has taken me to compose this email. But sometimes the mail doesn't go at all. Could it me because I have too many messages in my inbox and sent boxes (around 1000 in each)?  I read somewhere that you should delete Mail in library/pref/com.apple.mail.plst and reinstal it.  But I'm frightened to do this in case I can't re-instal it as I don't know how to.

    I have a Mac mini operating on Mac OS X(10.6.8) Snow Leopard. In the last couple of weeks I have been having intermittent problems sending mail from Mac MAIL, especially if I hit the reply button.  It whirls around for ever and then tells me to 'Try Later' or 'Try Again'.  When I shut down my computer and open up mail again, I hear the mail whizzing off.  I have just tried it now and it went in the time that it has taken me to compose this email. But sometimes the mail doesn't go at all. Could it me because I have too many messages in my inbox and sent boxes (around 1000 in each)?  I read somewhere that you should delete Mail in library/pref/com.apple.mail.plst and reinstal it.  But I'm frightened to do this in case I can't re-instal it as I don't know how to.

  • Problem with mail / mailing lists

    Hi,
    I'm having trouble getting the mailing list service to start. Everything else is working fine and i don't know where to look to see what the problem is.
    mail:protocolsArray:arrayindex:0:kind = "INCOMING"
    mail:protocolsArray:arrayindex:0:active = 0
    mail:protocolsArray:arrayindex:0:protocol = "IMAP"
    mail:protocolsArray:arrayindex:0:state = "RUNNING"
    mail:protocolsArray:arrayindex:0:status = "ON"
    mail:protocolsArray:arrayindex:0:error = ""
    mail:protocolsArray:arrayindex:0:total = 0
    mail:protocolsArray:arrayindex:1:kind = "INCOMING"
    mail:protocolsArray:arrayindex:1:active = 248
    mail:protocolsArray:arrayindex:1:protocol = "POP3"
    mail:protocolsArray:arrayindex:1:state = "RUNNING"
    mail:protocolsArray:arrayindex:1:status = "ON"
    mail:protocolsArray:arrayindex:1:error = ""
    mail:protocolsArray:arrayindex:1:total = 248
    mail:protocolsArray:arrayindex:2:kind = "INCOMING"
    mail:protocolsArray:arrayindex:2:active = 3
    mail:protocolsArray:arrayindex:2:protocol = "SMTP"
    mail:protocolsArray:arrayindex:2:state = "RUNNING"
    mail:protocolsArray:arrayindex:2:status = "ON"
    mail:protocolsArray:arrayindex:2:error = ""
    mail:protocolsArray:arrayindex:2:total = 3
    mail:protocolsArray:arrayindex:3:kind = "OUTGOING"
    mail:protocolsArray:arrayindex:3:active = 1
    mail:protocolsArray:arrayindex:3:protocol = "SMTP"
    mail:protocolsArray:arrayindex:3:state = "RUNNING"
    mail:protocolsArray:arrayindex:3:status = "ON"
    mail:protocolsArray:arrayindex:3:error = ""
    mail:protocolsArray:arrayindex:3:total = 1
    mail:protocolsArray:arrayindex:4:kind = "OUTGOING"
    mail:protocolsArray:arrayindex:4:active = 0
    mail:protocolsArray:arrayindex:4:protocol = "LISTSERVER"
    mail:protocolsArray:arrayindex:4:state = "STOPPED"
    mail:protocolsArray:arrayindex:4:status = "ON"
    mail:protocolsArray:arrayindex:4:error = ""
    mail:protocolsArray:arrayindex:4:total = 0
    mail:protocolsArray:arrayindex:5:kind = "INCOMING"
    mail:protocolsArray:arrayindex:5:active = 0
    mail:protocolsArray:arrayindex:5:protocol = "Junkmailfilter"
    mail:protocolsArray:arrayindex:5:state = "RUNNING"
    mail:protocolsArray:arrayindex:5:status = "ON"
    mail:protocolsArray:arrayindex:5:error = ""
    mail:protocolsArray:arrayindex:5:total = 0
    mail:protocolsArray:arrayindex:6:kind = "INCOMING"
    mail:protocolsArray:arrayindex:6:active = 0
    mail:protocolsArray:arrayindex:6:protocol = "Virus_scanner"
    mail:protocolsArray:arrayindex:6:state = "RUNNING"
    mail:protocolsArray:arrayindex:6:status = "ON"
    mail:protocolsArray:arrayindex:6:error = ""
    mail:protocolsArray:arrayindex:6:total = 0

    Hi,
    I'm having trouble getting the mailing list service to start. Everything else is working fine and i don't know where to look to see what the problem is.
    mail:protocolsArray:arrayindex:0:kind = "INCOMING"
    mail:protocolsArray:arrayindex:0:active = 0
    mail:protocolsArray:arrayindex:0:protocol = "IMAP"
    mail:protocolsArray:arrayindex:0:state = "RUNNING"
    mail:protocolsArray:arrayindex:0:status = "ON"
    mail:protocolsArray:arrayindex:0:error = ""
    mail:protocolsArray:arrayindex:0:total = 0
    mail:protocolsArray:arrayindex:1:kind = "INCOMING"
    mail:protocolsArray:arrayindex:1:active = 248
    mail:protocolsArray:arrayindex:1:protocol = "POP3"
    mail:protocolsArray:arrayindex:1:state = "RUNNING"
    mail:protocolsArray:arrayindex:1:status = "ON"
    mail:protocolsArray:arrayindex:1:error = ""
    mail:protocolsArray:arrayindex:1:total = 248
    mail:protocolsArray:arrayindex:2:kind = "INCOMING"
    mail:protocolsArray:arrayindex:2:active = 3
    mail:protocolsArray:arrayindex:2:protocol = "SMTP"
    mail:protocolsArray:arrayindex:2:state = "RUNNING"
    mail:protocolsArray:arrayindex:2:status = "ON"
    mail:protocolsArray:arrayindex:2:error = ""
    mail:protocolsArray:arrayindex:2:total = 3
    mail:protocolsArray:arrayindex:3:kind = "OUTGOING"
    mail:protocolsArray:arrayindex:3:active = 1
    mail:protocolsArray:arrayindex:3:protocol = "SMTP"
    mail:protocolsArray:arrayindex:3:state = "RUNNING"
    mail:protocolsArray:arrayindex:3:status = "ON"
    mail:protocolsArray:arrayindex:3:error = ""
    mail:protocolsArray:arrayindex:3:total = 1
    mail:protocolsArray:arrayindex:4:kind = "OUTGOING"
    mail:protocolsArray:arrayindex:4:active = 0
    mail:protocolsArray:arrayindex:4:protocol = "LISTSERVER"
    mail:protocolsArray:arrayindex:4:state = "STOPPED"
    mail:protocolsArray:arrayindex:4:status = "ON"
    mail:protocolsArray:arrayindex:4:error = ""
    mail:protocolsArray:arrayindex:4:total = 0
    mail:protocolsArray:arrayindex:5:kind = "INCOMING"
    mail:protocolsArray:arrayindex:5:active = 0
    mail:protocolsArray:arrayindex:5:protocol = "Junkmailfilter"
    mail:protocolsArray:arrayindex:5:state = "RUNNING"
    mail:protocolsArray:arrayindex:5:status = "ON"
    mail:protocolsArray:arrayindex:5:error = ""
    mail:protocolsArray:arrayindex:5:total = 0
    mail:protocolsArray:arrayindex:6:kind = "INCOMING"
    mail:protocolsArray:arrayindex:6:active = 0
    mail:protocolsArray:arrayindex:6:protocol = "Virus_scanner"
    mail:protocolsArray:arrayindex:6:state = "RUNNING"
    mail:protocolsArray:arrayindex:6:status = "ON"
    mail:protocolsArray:arrayindex:6:error = ""
    mail:protocolsArray:arrayindex:6:total = 0

  • Problems with Mail. No content shown.

    I have a problem with Mail on my iMac OSX 10.9.5. Mail downloads the message ok but message has no content. I click on the message but no content is shown. This happens in all the boxes and includes emails that have previously opened. When I reply to one of these messages the content is shown in the reply window. So everything works fine except when highlighting each email it tells me NO Message Selected. I hope I have explained that well enough. I hope there is someone that can help.
    I have been trying to solve it for about 5 hours. Help please!

    Try a restart.
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - Mavericks
    Safe Mode - About

Maybe you are looking for