|
What this is
Other links
The source code<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd"> <!-- CVS ID: $Id: web.xml,v 1.1.1.1 2002/10/02 18:35:30 wastl Exp $ --> <!-- This file provides a Servlet API 2.3 compliant configuration for the WebMail Servlet. Please modify according to your needs. (c)2002 Sebastian Schaffert This file is distributed under the terms of the GNU General Public License --> <web-app> <display-name>WebMail/Java - WWW access to your mail <servlet> <!-- The servlet's name. Don't change unless you know what you are doing --> <servlet-name> WebMail </servlet-name> <servlet-class> net.wastl.webmail.server.WebMailServlet </servlet-class> <!-- WebMail's Plugins. The plugins that should be used by WebMail, full classnames separated by ":". All of them MUST implement the Plugin-Interface. --> <init-param> <param-name>webmail.plugins <param-value>About:AdminPlugin:ChallengeHandler:Composer:ErrorHandler:FileAttacher:FolderList:FolderSetup:NavBar:ImageHandler:LogoutSession:MailboxList:PassThroughPlugin:SendMessage:ShowMessage:ShowMIME:UserSetup:WebMailHelp:WebMailTitle </init-param> <!-- WebMail's Authenticator Plugins WebMail Authenticator Plugins to use. Same as above, but all MUST implement the Authenticator-Interface. --> <init-param> <param-name>webmail.authenticators <param-value>IMAPAuthenticator:POPAuthenticator:OTPAuthenticator:SimpleAuthenticator:UnixAuthenticator </init-param> <!-- WebMail default language; if ommited, Locale.getDefault() will be used. --> <init-param> <param-name>webmail.default.locale.language <param-value>en </init-param> <!-- WebMail default country; if ommited, Locale.getDefault() will be used. --> <init-param> <param-name>webmail.default.locale.country <param-value>US </init-param> <!-- Modified by exce, end --> <!-- WebMail default theme to use; if not specified, "bibop" will be used --> <init-param> <param-name>webmail.default.theme <param-value>bibop </init-param> <!-- Storage mechanism to be used by WebMail. Don't change unless you know what you are doing (i.e. if you have a different Storage implementation --> <init-param> <param-name>webmail.storage <param-value>net.wastl.webmail.storage.simple.SimpleStorage </init-param> <!-- The log facility to use. Currently, JWebMail supports log-to-file and the servlet container's logging method. --> <init-param> <param-name>webmail.log.facility <param-value>net.wastl.webmail.logger.ServletLogger </init-param> <!-- The basepath for the WebMail Servlet. Needed to construct references to program parts --> <init-param> <param-name>webmail.basepath <param-value>@base-uri@/WebMail </init-param> <!-- This parameter is useful if you want to put the images in a different directory so they can be handled by the webserver instead of passing through the (slower) WebMail UPDATE(0.7.7) This URL is now the same as the base webapp URL The path to the individual images will be composed with webmail.imagebase + "/" + language + "/" + theme --> <init-param> <param-name>webmail.imagebase <param-value>@base-uri@/lib/templates </init-param> <!-- The following path names are real path names of the operating system. WebMail tries to use reasonable defaults if you have a default installation, by using ServletContext.getRealPath(...) . You might want to set explicit paths however, if you move around the WebMail directory structure --> <!-- WebMail Data Path. Points to the directory where WebMail configuration files will be placed. Must be owned by the user running WebMail If you move the data directory to a more secure place, please enter the full system path to this directory here --> <!-- <init-param> <param-name>webmail.data.path <param-value>@webapp-home@/data </init-param> --> <!-- WebMail Library Path. Contains the libraries needed for WebMail Usually it is not necessary to move this directory away from the WebMail apphome. Only set this if you know what you are doing, WebMail tries to use reasonable defaults --> <!-- <init-param> <param-name>webmail.lib.path <param-value>@webapp-home@/lib </init-param> --> <!-- WebMail Template Path. Contains the XSL stylesheets for the user interfaces. Usually it is not necessary to move this directory away from the WebMail apphome. Only set this if you know what you are doing, WebMail tries to use reasonable defaults --> <!-- <init-param> <param-name>webmail.template.path <param-value>@webapp-home@/lib/templates </init-param> --> <!-- WebMail XML Path. Contains DTDs and dummy files for WebMail's internal data model. Usually it is not necessary to move this directory away from the WebMail apphome. Only set this if you know what you are doing, WebMail tries to use reasonable defaults --> <!-- <init-param> <param-name>webmail.xml.path <param-value>@webapp-home@/lib/xml </init-param> --> <!-- WebMail should be loaded on startup as it needs quite some time for initialization. The order doesn't matter, however. Also, please ensure that reloading of the servlet classes is disabled for WebMail --> <load-on-startup> -2147483646 </load-on-startup> </servlet> <servlet-mapping> <servlet-name>WebMail <url-pattern>/WebMail/* </servlet-mapping> </web-app> |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.