source: products/vendor/Products.MailHost/current/src/Products/MailHost/__init__.py @ 3356

Last change on this file since 3356 was 3356, checked in by fenix, 12 years ago

Load 2.13.1 into vendor/Products.MailHost?/current.

  • Property svn:eol-style set to native
File size: 994 bytes
Line 
1##############################################################################
2#
3# Copyright (c) 2002 Zope Foundation and Contributors.
4#
5# This software is subject to the provisions of the Zope Public License,
6# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
7# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
8# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
9# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
10# FOR A PARTICULAR PURPOSE
11#
12##############################################################################
13
14import MailHost
15import SendMailTag
16
17
18def initialize(context):
19    context.registerClass(
20        MailHost.MailHost,
21        permission='Add MailHost objects',
22        constructors=(MailHost.manage_addMailHostForm,
23                      MailHost.manage_addMailHost),
24        icon='www/MailHost_icon.gif',
25    )
26
27    context.registerHelp()
28    context.registerHelpTitle('Zope Help')
Note: See TracBrowser for help on using the repository browser.