All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.james.mailet.standard.mailets.WrapText Maven / Gradle / Ivy

/****************************************************************
 * Licensed to the Apache Software Foundation (ASF) under one   *
 * or more contributor license agreements.  See the NOTICE file *
 * distributed with this work for additional information        *
 * regarding copyright ownership.  The ASF licenses this file   *
 * to you under the Apache License, Version 2.0 (the            *
 * "License"); you may not use this file except in compliance   *
 * with the License.  You may obtain a copy of the License at   *
 *                                                              *
 *   http://www.apache.org/licenses/LICENSE-2.0                 *
 *                                                              *
 * Unless required by applicable law or agreed to in writing,   *
 * software distributed under the License is distributed on an  *
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
 * KIND, either express or implied.  See the License for the    *
 * specific language governing permissions and limitations      *
 * under the License.                                           *
 ****************************************************************/

package org.apache.james.mailet.standard.mailets;

import org.apache.mailet.base.FlowedMessageUtils;
import org.apache.mailet.base.GenericMailet;
import org.apache.mailet.Mail;
import org.apache.mailet.MailetException;

import javax.mail.MessagingException;

import java.io.IOException;

/**
 * Convert a message to format=flowed
 */
public class WrapText extends GenericMailet {
    private static final String PARAMETER_NAME_FLOWED_DELSP = "delsp";
    private static final String PARAMETER_NAME_WIDTH = "width";
    
    private boolean optionFlowedDelsp = false;
    private int optionWidth = FlowedMessageUtils.RFC2646_WIDTH;
    
    /**
     * returns a String describing this mailet.
     * 
     * @return A desciption of this mailet
     */
    public String getMailetInfo() {
        return "WrapText";
    }

    private static boolean getBooleanParameter(String v, boolean def) {
        return def ? 
                !(v != null && (v.equalsIgnoreCase("false") || v.equalsIgnoreCase("no"))) : 
                    v != null && (v.equalsIgnoreCase("true") || v.equalsIgnoreCase("yes"))  ;
    }
    
    public void init() throws MailetException {
        optionFlowedDelsp = getBooleanParameter(getInitParameter(PARAMETER_NAME_FLOWED_DELSP), optionFlowedDelsp);
        optionWidth = Integer.parseInt(getInitParameter(PARAMETER_NAME_WIDTH, "" + optionWidth));
    }

    public void service(Mail mail) throws MailetException {
        // TODO We could even manage the flow when the message is quoted-printable
        
        try {
            FlowedMessageUtils.flowMessage(mail.getMessage(), optionFlowedDelsp, optionWidth);
            
        } catch (MessagingException e) {
            throw new MailetException("Could not wrap message", e);
            
        } catch (IOException e) {
            throw new MailetException("Could not wrap message", e);
        }
        
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy