Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
f3fbd2cb
Commit
f3fbd2cb
authored
Oct 02, 2005
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- added IMailHost interface
- some cleanup
parent
db3603ff
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
115 additions
and
43 deletions
+115
-43
lib/python/Products/MailHost/MailHost.py
lib/python/Products/MailHost/MailHost.py
+37
-25
lib/python/Products/MailHost/interfaces.py
lib/python/Products/MailHost/interfaces.py
+25
-0
lib/python/Products/MailHost/tests/testMailHost.py
lib/python/Products/MailHost/tests/testMailHost.py
+53
-18
No files found.
lib/python/Products/MailHost/MailHost.py
View file @
f3fbd2cb
...
...
@@ -7,28 +7,38 @@
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
# FOR A PARTICULAR PURPOSE
.
#
##############################################################################
"""SMTP mail objects
$Id$"""
__version__
=
"$Revision: 1.83 $"
[
11
:
-
2
]
from
Globals
import
Persistent
,
DTMLFile
,
InitializeClass
from
smtplib
import
SMTP
from
AccessControl.Role
import
RoleManager
from
operator
import
truth
import
Acquisition
,
sys
,
types
,
mimetools
import
OFS.SimpleItem
,
re
,
quopri
,
rfc822
$Id$
"""
import
mimetools
import
rfc822
from
cStringIO
import
StringIO
from
smtplib
import
SMTP
import
Acquisition
import
OFS.SimpleItem
from
AccessControl
import
ClassSecurityInfo
from
AccessControl.Permissions
import
view_management_screens
,
\
use_mailhost_services
from
AccessControl.Permissions
import
change_configuration
from
AccessControl.Permissions
import
use_mailhost_services
from
AccessControl.Permissions
import
view_management_screens
from
AccessControl.Role
import
RoleManager
from
Globals
import
Persistent
,
DTMLFile
,
InitializeClass
from
DateTime
import
DateTime
from
zope.interface
import
implements
from
interfaces
import
IMailHost
class
MailHostError
(
Exception
):
class
MailHostError
(
Exception
):
pass
manage_addMailHostForm
=
DTMLFile
(
'dtml/addMailHost_form'
,
globals
())
def
manage_addMailHost
(
self
,
id
,
title
=
''
,
smtp_host
=
'localhost'
,
localhost
=
'localhost'
,
smtp_port
=
25
...
...
@@ -42,8 +52,13 @@ def manage_addMailHost( self, id, title='', smtp_host='localhost'
add
=
manage_addMailHost
class
MailBase
(
Acquisition
.
Implicit
,
OFS
.
SimpleItem
.
Item
,
RoleManager
):
'a mailhost...?'
implements
(
IMailHost
)
meta_type
=
'Mail Host'
manage
=
manage_main
=
DTMLFile
(
'dtml/manageMailHost'
,
globals
())
manage_main
.
_setName
(
'manage_main'
)
...
...
@@ -81,8 +96,7 @@ class MailBase(Acquisition.Implicit, OFS.SimpleItem.Item, RoleManager):
self
.
smtp_host
=
smtp_host
self
.
smtp_port
=
smtp_port
security
.
declareProtected
(
'Change configuration'
,
'manage_makeChanges'
)
security
.
declareProtected
(
change_configuration
,
'manage_makeChanges'
)
def
manage_makeChanges
(
self
,
title
,
smtp_host
,
smtp_port
,
smtp_uid
=
''
,
smtp_pwd
=
''
,
REQUEST
=
None
):
'make the changes'
...
...
@@ -102,8 +116,7 @@ class MailBase(Acquisition.Implicit, OFS.SimpleItem.Item, RoleManager):
,
manage_tabs_message
=
msg
)
security
.
declareProtected
(
use_mailhost_services
,
'sendTemplate'
)
security
.
declareProtected
(
use_mailhost_services
,
'sendTemplate'
)
def
sendTemplate
(
trueself
,
self
,
messageTemplate
,
statusTemplate
=
None
,
mto
=
None
,
mfrom
=
None
,
encode
=
None
,
REQUEST
=
None
):
...
...
@@ -122,8 +135,7 @@ class MailBase(Acquisition.Implicit, OFS.SimpleItem.Item, RoleManager):
except
:
return
"SEND OK"
security
.
declareProtected
(
use_mailhost_services
,
'send'
)
security
.
declareProtected
(
use_mailhost_services
,
'send'
)
def
send
(
self
,
messageText
,
mto
=
None
,
mfrom
=
None
,
subject
=
None
,
encode
=
None
):
...
...
@@ -131,21 +143,19 @@ class MailBase(Acquisition.Implicit, OFS.SimpleItem.Item, RoleManager):
messageText
=
_encode
(
messageText
,
encode
)
self
.
_send
(
mfrom
,
mto
,
messageText
)
# This is here for backwards compatibility only. Possibly it could
# be used to send messages at a scheduled future time, or via a mail queue?
security
.
declareProtected
(
use_mailhost_services
,
'scheduledSend'
)
security
.
declareProtected
(
use_mailhost_services
,
'scheduledSend'
)
scheduledSend
=
send
security
.
declareProtected
(
use_mailhost_services
,
'simple_send'
)
security
.
declareProtected
(
use_mailhost_services
,
'simple_send'
)
def
simple_send
(
self
,
mto
,
mfrom
,
subject
,
body
):
body
=
"From: %s
\
n
To: %s
\
n
Subject: %s
\
n
\
n
%s"
%
(
mfrom
,
mto
,
subject
,
body
)
self
.
_send
(
mfrom
,
mto
,
body
)
security
.
declarePrivate
(
'_send'
)
security
.
declarePrivate
(
'_send'
)
def
_send
(
self
,
mfrom
,
mto
,
messageText
):
""" Send the message """
smtpserver
=
SMTP
(
self
.
smtp_host
,
int
(
self
.
smtp_port
)
)
...
...
@@ -154,12 +164,14 @@ class MailBase(Acquisition.Implicit, OFS.SimpleItem.Item, RoleManager):
smtpserver
.
sendmail
(
mfrom
,
mto
,
messageText
)
smtpserver
.
quit
()
InitializeClass
(
MailBase
)
InitializeClass
(
MailBase
)
class
MailHost
(
Persistent
,
MailBase
):
"persistent version"
def
_encode
(
body
,
encode
=
None
):
if
encode
is
None
:
return
body
...
...
@@ -191,7 +203,7 @@ def _mungeHeaders( messageText, mto=None, mfrom=None, subject=None):
mo
[
'Subject'
]
=
'[No Subject]'
if
mto
:
if
isinstance
(
mto
,
types
.
StringType
):
if
isinstance
(
mto
,
basestring
):
mto
=
[
rfc822
.
dump_address_pair
(
addr
)
for
addr
in
rfc822
.
AddressList
(
mto
)
]
if
not
mo
.
getheader
(
'To'
):
mo
[
'To'
]
=
','
.
join
(
mto
)
...
...
lib/python/Products/MailHost/interfaces.py
0 → 100644
View file @
f3fbd2cb
##############################################################################
#
# Copyright (c) 2005 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""MailHost z3 interfaces.
$Id$
"""
from
zope.interface
import
Interface
class
IMailHost
(
Interface
):
def
send
(
messageText
,
mto
=
None
,
mfrom
=
None
,
subject
=
None
,
encode
=
None
):
"""Send mail.
"""
lib/python/Products/MailHost/tests/testMailHost.py
View file @
f3fbd2cb
import
os
,
sys
,
unittest
##############################################################################
#
# Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""MailHost unit tests.
$Id$
"""
import
unittest
import
string
,
cStringIO
,
re
import
ZODB
,
Acquisition
from
Products.MailHost.MailHost
import
MailHostError
,
_mungeHeaders
class
TestMailHost
(
unittest
.
TestCase
):
class
TestMailHost
(
unittest
.
TestCase
):
def
_getTargetClass
(
self
):
from
Products.MailHost.MailHost
import
MailHost
return
MailHost
def
test_z3interfaces
(
self
):
from
Products.MailHost.interfaces
import
IMailHost
from
zope.interface.verify
import
verifyClass
verifyClass
(
IMailHost
,
self
.
_getTargetClass
())
def
testAllHeaders
(
self
):
msg
=
"""To: recipient@domain.com
...
...
@@ -18,12 +45,14 @@ This is the message body."""
self
.
failUnless
(
resfrom
==
'sender@domain.com'
)
# Add duplicated info
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
'recipient@domain.com'
,
'sender@domain.com'
,
'This is the subject'
)
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
'recipient@domain.com'
,
'sender@domain.com'
,
'This is the subject'
)
self
.
failUnless
(
resto
==
[
'recipient@domain.com'
])
self
.
failUnless
(
resfrom
==
'sender@domain.com'
)
# Add extra info
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
'recipient2@domain.com'
,
'sender2@domain.com'
,
'This is the real subject'
)
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
'recipient2@domain.com'
,
'sender2@domain.com'
,
'This is the real subject'
)
self
.
failUnless
(
resto
==
[
'recipient2@domain.com'
])
self
.
failUnless
(
resfrom
==
'sender2@domain.com'
)
...
...
@@ -32,18 +61,23 @@ This is the message body."""
This is the message body."""
# Doesn't specify to
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mfrom
=
'sender@domain.com'
)
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mfrom
=
'sender@domain.com'
)
# Doesn't specify from
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mto
=
'recipient@domain.com'
)
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mto
=
'recipient@domain.com'
)
def
testNoHeaders
(
self
):
msg
=
"""This is the message body."""
# Doesn't specify to
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mfrom
=
'sender@domain.com'
)
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mfrom
=
'sender@domain.com'
)
# Doesn't specify from
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mto
=
'recipient@domain.com'
)
self
.
failUnlessRaises
(
MailHostError
,
_mungeHeaders
,
msg
,
mto
=
'recipient@domain.com'
)
# Specify all
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
'recipient2@domain.com'
,
'sender2@domain.com'
,
'This is the real subject'
)
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
'recipient2@domain.com'
,
'sender2@domain.com'
,
'This is the real subject'
)
self
.
failUnless
(
resto
==
[
'recipient2@domain.com'
])
self
.
failUnless
(
resfrom
==
'sender2@domain.com'
)
...
...
@@ -66,23 +100,24 @@ This is the message body."""
# Test Address-Parser for To & CC given in messageText
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
)
self
.
failUnless
(
resto
==
[
'"Name, Nick" <recipient@domain.com>'
,
'"Foo Bar" <foo@domain.com>'
,
'"Web, Jack" <jack@web.com>'
])
self
.
failUnless
(
resto
==
[
'"Name, Nick" <recipient@domain.com>'
,
'"Foo Bar" <foo@domain.com>'
,
'"Web, Jack" <jack@web.com>'
])
self
.
failUnless
(
resfrom
==
'sender@domain.com'
)
# Test Address-Parser for a given mto-string
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
mto
=
'"Public, Joe" <pjoe@domain.com>, "Foo Bar" <foo@domain.com>'
)
resmsg
,
resto
,
resfrom
=
_mungeHeaders
(
msg
,
mto
=
'"Public, Joe" <pjoe@domain.com>, "Foo Bar" <foo@domain.com>'
)
self
.
failUnless
(
resto
==
[
'"Public, Joe" <pjoe@domain.com>'
,
'"Foo Bar" <foo@domain.com>'
])
self
.
failUnless
(
resto
==
[
'"Public, Joe" <pjoe@domain.com>'
,
'"Foo Bar" <foo@domain.com>'
])
self
.
failUnless
(
resfrom
==
'sender@domain.com'
)
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
TestMailHost
)
)
return
suite
def
main
():
unittest
.
TextTestRunner
().
run
(
test_suite
())
if
__name__
==
'__main__'
:
main
(
)
unittest
.
main
(
defaultTest
=
'test_suite'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment