/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 1997-2008 Sun Microsystems, Inc. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can obtain * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt. * Sun designates this particular file as subject to the "Classpath" exception * as provided by Sun in the GPL Version 2 section of the License file that * accompanied this code. If applicable, add the following below the License * Header, with the fields enclosed by brackets [] replaced by your own * identifying information: "Portions Copyrighted [year] * [name of copyright owner]" * * Contributor(s): * * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.mail.dsn; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Enumeration; import javax.mail.MessagingException; import javax.mail.internet.InternetHeaders; import com.sun.mail.util.LineOutputStream; import com.sun.mail.util.PropUtil; /** * A message/disposition-notification message content, as defined in * <A HREF="http://www.ietf.org/rfc/rfc3798.txt">RFC 3798</A>. * * @since JavaMail 1.4.2 */ public class DispositionNotification extends Report { private static boolean debug = PropUtil.getBooleanSystemProperty("mail.dsn.debug", false); /** * The disposition notification content fields. */ protected InternetHeaders notifications; /** * Construct a disposition notification with no content. */ public DispositionNotification() throws MessagingException { super("disposition-notification"); notifications = new InternetHeaders(); } /** * Construct a disposition notification by parsing the * supplied input stream. */ public DispositionNotification(InputStream is) throws MessagingException, IOException { super("disposition-notification"); notifications = new InternetHeaders(is); if (debug) System.out.println("MDN: got notification content"); } /** * Return all the disposition notification fields in the * disposition notification. * The fields are defined as: * * <pre> * disposition-notification-content = * [ reporting-ua-field CRLF ] * [ mdn-gateway-field CRLF ] * [ original-recipient-field CRLF ] * final-recipient-field CRLF * [ original-message-id-field CRLF ] * disposition-field CRLF * *( failure-field CRLF ) * *( error-field CRLF ) * *( warning-field CRLF ) * *( extension-field CRLF ) * </pre> */ // XXX - could parse each of these fields public InternetHeaders getNotifications() { return notifications; } /** * Set the disposition notification fields in the * disposition notification. */ public void setNotifications(InternetHeaders notifications) { this.notifications = notifications; } public void writeTo(OutputStream os) throws IOException, MessagingException { // see if we already have a LOS LineOutputStream los = null; if (os instanceof LineOutputStream) { los = (LineOutputStream) os; } else { los = new LineOutputStream(os); } writeInternetHeaders(notifications, los); los.writeln(); } private static void writeInternetHeaders(InternetHeaders h, LineOutputStream los) throws IOException { Enumeration e = h.getAllHeaderLines(); try { while (e.hasMoreElements()) los.writeln((String)e.nextElement()); } catch (MessagingException mex) { Exception ex = mex.getNextException(); if (ex instanceof IOException) throw (IOException)ex; else throw new IOException("Exception writing headers: " + mex); } } public String toString() { return "DispositionNotification: Reporting-UA=" + notifications.getHeader("Reporting-UA", null); } }