- further interfacing MailClient
[MUMail.cvs.git] / mumail / mime / mimeMail.java
blob05a6316518080ad1abf0c221d066410d1dad80ab
1 /*
2 * Copyright (C) 1998-2001 Mark Tuempfel and Uli Luckas
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 * To reach the Authors you can send E-Mail to:
20 * Mark Tuempfel <marktop@cs.tu-berlin.de>
21 * Uli Luckas <luckas@cs.tu-brelin.de>
25 package mumail.mime;
28 public class mimeMail extends MIME_message_rfc822 {
30 public mimeMail(String mailLine[]) throws InterruptedException {
31 // Betrachtet man eine mail als message/rfc822 MIME-Typ
32 // sind die Header MIME-Header und zugleich Teil der rfc822
33 // Mail. Deshalb muss der bodyStart auf 0 und nicht hinter
34 // den Header gesetzt werden!!!
36 super(new mimeHeader(mailLine, 0, mailLine.length), mailLine, 0, mailLine.length);