Changeset 8


Ignore:
Timestamp:
09/25/02 13:59:18 (21 years ago)
Author:
piso
Message:

Call session.setTunnel() in constructor if applicable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/j/mail/ImapMailbox.java

    r2 r8  
    33 *
    44 * Copyright (C) 2000-2002 Peter Graves
    5  * $Id: ImapMailbox.java,v 1.1.1.1 2002-09-24 16:09:49 piso Exp $
     5 * $Id: ImapMailbox.java,v 1.2 2002-09-25 13:59:18 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    7171        this.session = session;
    7272        session.setMailbox(this);
     73        String tunnel = getStringProperty(Property.TUNNEL);
     74        if (tunnel != null) {
     75            Log.debug("tunnel = |" + tunnel + "|");
     76            session.setTunnel(tunnel);
     77        }
    7378        folderName = session.getFolderName();
    7479        Debug.assertTrue(folderName.equals(url.getFolderName()));
Note: See TracChangeset for help on using the changeset viewer.