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

WEB邮件程序

开发平台:

C/C++

  1. /*
  2.  * NNTPTransport.java
  3.  * Copyright (C) 1999 dog <dog@dog.net.uk>
  4.  * 
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  * 
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  * 
  19.  * You may retrieve the latest version of this library from
  20.  * http://www.dog.net.uk/knife/
  21.  */
  22. package dog.mail.nntp;
  23. import java.io.*;
  24. import java.net.*;
  25. import java.util.*;
  26. import javax.mail.*;
  27. import javax.mail.event.*;
  28. import javax.mail.internet.*;
  29. import dog.mail.util.*;
  30. import dog.util.*;
  31. /**
  32.  * The transport class implementing the NNTP Usenet news protocol.
  33.  *
  34.  * @author dog@dog.net.uk
  35.  * @version 1.2
  36.  */
  37. public class NNTPTransport extends Transport {
  38. NNTPStore store;
  39. public NNTPTransport(Session session, URLName urlname) {
  40. super(session, urlname);
  41. }
  42. public boolean protocolConnect(String host, int port, String user, String password) throws MessagingException {
  43. try {
  44. InetAddress address = InetAddress.getByName(host);
  45. store = NNTPStore.getStore(address, port);
  46. if (store==null) {
  47. store = new NNTPStore(session, url);
  48. return store.protocolConnect(host, port, user, password);
  49. }
  50. return true;
  51. } catch (UnknownHostException e) {
  52. throw new MessagingException(e.getMessage(), e);
  53. }
  54. }
  55. public void sendMessage(Message message, Address[] addresses) throws MessagingException {
  56. store.postArticle(message, addresses);
  57. }
  58. }