Package de.spotnik.mail.core.message

Examples of de.spotnik.mail.core.message.WrappedMessage


        if( this.persister == null)
        {
            throw new TechnicalException("can't save messages, persister not set");
        }
       
        WrappedMessage wrappedMessage = null;
        try
        {
            wrappedMessage = new WrappedMessage(account, currentMsg, new Date());
           
            if( notParsed(wrappedMessage))
            {
                if( LOG.isDebugEnabled())
                {
                    LOG.debug("processing " + wrappedMessage.getMessageId() + ", Subject: "
                              + wrappedMessage.getSubject());
                }
               
                if( this.filter != null)
                {
                    this.filter.filter(wrappedMessage);
                }
               
                this.persister.addMessage(wrappedMessage);
                processListeners(wrappedMessage);
            }
        }
        catch( BusinessException ex)
        {
            // FIXME: do some error handling
            LOG.error("can't read message", ex);
        }
        catch( Exception ex)
        {
            if( wrappedMessage != null)
            {
                FATAL.error(ex.getMessage(), ex);
                FATAL.fatal("\n" + wrappedMessage.getRawMessage());
            }
        }
    }
View Full Code Here

TOP

Related Classes of de.spotnik.mail.core.message.WrappedMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.