mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
23167: Removed hard-coded "localhost" from ImapMessageTest 23179: (RECORD ONLY) Merged HEAD to V3.3-BUG-FIX 23064: Quick build fix (fallout from audit) 23069: Do not attempt to audit InputStream property 23190: Merged V3.3 to V3.3-BUG-FIX 23189: Merged PATCHES/V3.2.0 to V3.3 23173: ALF-5249: RepositoryContainer needs an 'unlimited' txn helper in order to generate the error response. 23186: (RECORD ONLY) Merged V3.3-BUG-FIX to V3.3 23180: Added flag for strict audit config loading: audit.config.strict=false 23184: (RECORD ONLY) Merged V3.3-BUG-FIX to V3.3 23179: Merged HEAD to V3.3-BUG-FIX 23064: Quick build fix (fallout from audit) 23069: Do not attempt to audit InputStream property 23171: Fixed ALF-1990: Trashcan "Delete All Items" button might not delete all items - NodeArchiveService implements batching and locking for purgeAll... and restoreAll... - One user can do this operation at a time. Other users get 'busy' error. - Items will disappear from the trashcan as the process progresses. 23169: Merged HEAD to V3.3 22933: Fixed getLock implementation to handle zero retry parameters git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@23192 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
128 lines
3.5 KiB
Java
128 lines
3.5 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.repo.imap;
|
|
|
|
import org.springframework.extensions.surf.util.AbstractLifecycleBean;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
import org.springframework.context.ApplicationEvent;
|
|
|
|
import com.icegreen.greenmail.Managers;
|
|
import com.icegreen.greenmail.imap.ImapHostManager;
|
|
import com.icegreen.greenmail.imap.ImapServer;
|
|
import com.icegreen.greenmail.user.UserManager;
|
|
import com.icegreen.greenmail.util.ServerSetup;
|
|
|
|
/**
|
|
* @author Mike Shavnev
|
|
*/
|
|
public class AlfrescoImapServer extends AbstractLifecycleBean
|
|
{
|
|
|
|
private static Log logger = LogFactory.getLog(AlfrescoImapServer.class);
|
|
|
|
private ImapServer serverImpl;
|
|
|
|
private int port = 143;
|
|
private String host = "0.0.0.0";
|
|
private ImapHostManager imapHostManager;
|
|
|
|
private UserManager imapUserManager;
|
|
|
|
private boolean imapServerEnabled;
|
|
|
|
|
|
public void setImapServerEnabled(boolean imapServerEnabled)
|
|
{
|
|
this.imapServerEnabled = imapServerEnabled;
|
|
}
|
|
|
|
public void setPort(int port)
|
|
{
|
|
this.port = port;
|
|
}
|
|
|
|
public void setHost(String host)
|
|
{
|
|
this.host = host;
|
|
}
|
|
|
|
public int getPort()
|
|
{
|
|
return port;
|
|
}
|
|
|
|
public String getHost()
|
|
{
|
|
return host;
|
|
}
|
|
|
|
public void setImapHostManager(ImapHostManager imapHostManager)
|
|
{
|
|
this.imapHostManager = imapHostManager;
|
|
}
|
|
|
|
public void setImapUserManager(UserManager imapUserManager)
|
|
{
|
|
this.imapUserManager = imapUserManager;
|
|
}
|
|
|
|
protected void onBootstrap(ApplicationEvent event)
|
|
{
|
|
if (imapServerEnabled)
|
|
{
|
|
Managers imapManagers = new Managers()
|
|
{
|
|
public ImapHostManager getImapHostManager()
|
|
{
|
|
return imapHostManager;
|
|
}
|
|
|
|
public UserManager getUserManager()
|
|
{
|
|
return imapUserManager;
|
|
}
|
|
};
|
|
|
|
serverImpl = new ImapServer(new ServerSetup(port, host, ServerSetup.PROTOCOL_IMAP), imapManagers);
|
|
serverImpl.startService(null);
|
|
if (logger.isInfoEnabled())
|
|
{
|
|
logger.info("IMAP service started on host:port " + host + ":" + this.port + ".");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (logger.isDebugEnabled())
|
|
{
|
|
logger.debug("IMAP service is disabled.");
|
|
}
|
|
}
|
|
}
|
|
|
|
protected void onShutdown(ApplicationEvent event)
|
|
{
|
|
if (serverImpl != null)
|
|
{
|
|
serverImpl.stopService(null);
|
|
}
|
|
}
|
|
|
|
}
|