ShowMIME.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: ShowMIME.java,v 1.3 2000/04/18 13:12:47 wastl Exp $ */
  2. import net.wastl.webmail.server.*;
  3. import net.wastl.webmail.server.http.*;
  4. import net.wastl.webmail.ui.html.*;
  5. import net.wastl.webmail.misc.ByteStore;
  6. /*
  7.  * ShowMIME.java
  8.  *
  9.  * Created: Thu Sep  2 18:52:40 1999
  10.  *
  11.  * Copyright (C) 1999-2000 Sebastian Schaffert
  12.  * 
  13.  * This program is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU General Public License
  15.  * as published by the Free Software Foundation; either version 2
  16.  * of the License, or (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  26.  */
  27. /**
  28.  * Show a MIME part of a message.
  29.  *
  30.  * provides: message mime
  31.  * requires: message show
  32.  *
  33.  * Created: Thu Sep  2 18:52:40 1999
  34.  *
  35.  * @author Sebastian Schaffert
  36.  * @version
  37.  */
  38. public class ShowMIME implements Plugin, URLHandler {
  39.     
  40.     public static final String VERSION="1.1";
  41.     public static final String URL="/showmime";
  42.     Storage store;
  43.     public ShowMIME() {
  44.     }
  45.     public void register(WebMailServer parent) {
  46. parent.getURLHandler().registerHandler(URL,this);
  47. this.store=parent.getStorage();
  48.     }
  49.     public String getName() {
  50. return "ShowMIME";
  51.     }
  52.     public String getDescription() {
  53. return "Show a MIME part";
  54.     }
  55.     public String getVersion() {
  56. return VERSION;
  57.     }
  58.     public String getURL() {
  59. return URL;
  60.     }
  61.     public HTMLDocument handleURL(String suburl, HTTPSession sess, HTTPRequestHeader header) throws WebMailException {
  62. if(sess == null) {
  63.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  64. }
  65. WebMailSession session=(WebMailSession)sess;
  66. //System.err.println("Fetching MIME part: "+suburl);
  67. ByteStore b=session.getMIMEPart(header.getContent("msgid"),suburl.substring(1));
  68. int count=0;
  69. while(b == null && count <= 10) {
  70.     //System.err.print(count+" ");
  71.     try {
  72. Thread.sleep(250);
  73.     } catch(InterruptedException e) {}
  74.     b=session.getMIMEPart(header.getContent("msgid"),suburl.substring(1));
  75.     count++;
  76. }
  77. if(count != 0) { System.err.println(); }
  78. HTMLImage content=new HTMLImage(b);
  79. //System.err.println(content.size());
  80. return content;
  81.     }
  82.     public String provides() {
  83. return "message mime";
  84.     }
  85.     public String requires() {
  86. return "message show";
  87.     }
  88. } // ShowMIME