summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2015-01-23 11:52:42 -0600
committerRuben Pollan <meskio@sindominio.net>2015-01-28 11:17:27 -0600
commit2d8cbe704101053a5aebdf696c7217c43a615bc6 (patch)
tree9c503c1038481b1d7567f113cb145d88b0dec25c
parentb5cecfd9ad09e5e82eea02994726eeaca0866155 (diff)
Remove footer
-rw-r--r--changes/feature-4692_remove_footer1
-rw-r--r--src/leap/mail/outgoing/service.py13
-rw-r--r--src/leap/mail/outgoing/tests/test_outgoing.py4
3 files changed, 2 insertions, 16 deletions
diff --git a/changes/feature-4692_remove_footer b/changes/feature-4692_remove_footer
new file mode 100644
index 0000000..8eca883
--- /dev/null
+++ b/changes/feature-4692_remove_footer
@@ -0,0 +1 @@
+- Don't add any footer to the emails (Closes: #4692)
diff --git a/src/leap/mail/outgoing/service.py b/src/leap/mail/outgoing/service.py
index b70b3b1..88b8895 100644
--- a/src/leap/mail/outgoing/service.py
+++ b/src/leap/mail/outgoing/service.py
@@ -67,8 +67,6 @@ class OutgoingMail:
A service for handling encrypted outgoing mail.
"""
- FOOTER_STRING = "I prefer encrypted email"
-
def __init__(self, from_address, keymanager, cert, key, host, port):
"""
Initialize the mail service.
@@ -220,7 +218,6 @@ class OutgoingMail:
:rtype: Deferred
"""
# pass if the original message's content-type is "multipart/encrypted"
- lines = raw.split('\r\n')
origmsg = Parser().parsestr(raw)
if origmsg.get_content_type() == 'multipart/encrypted':
@@ -230,16 +227,6 @@ class OutgoingMail:
username, domain = from_address.split('@')
to_address = validate_address(recipient.dest.addrstr)
- # add a nice footer to the outgoing message
- # XXX: footer will eventually optional or be removed
- if origmsg.get_content_type() == 'text/plain':
- lines.append('--')
- lines.append('%s - https://%s/key/%s' %
- (self.FOOTER_STRING, domain, username))
- lines.append('')
-
- origmsg = Parser().parsestr('\r\n'.join(lines))
-
def signal_encrypt_sign(newmsg):
signal(proto.SMTP_END_ENCRYPT_AND_SIGN,
"%s,%s" % (self._from_address, to_address))
diff --git a/src/leap/mail/outgoing/tests/test_outgoing.py b/src/leap/mail/outgoing/tests/test_outgoing.py
index fa50c30..d7423b6 100644
--- a/src/leap/mail/outgoing/tests/test_outgoing.py
+++ b/src/leap/mail/outgoing/tests/test_outgoing.py
@@ -58,9 +58,7 @@ class TestOutgoingMail(TestCaseWithKeyManager):
self.lines = [line for line in self.EMAIL_DATA[4:12]]
self.lines.append('') # add a trailing newline
self.raw = '\r\n'.join(self.lines)
- self.expected_body = ('\r\n'.join(self.EMAIL_DATA[9:12]) +
- "\r\n\r\n--\r\nI prefer encrypted email - "
- "https://leap.se/key/anotheruser\r\n")
+ self.expected_body = '\r\n'.join(self.EMAIL_DATA[9:12]) + "\r\n"
self.fromAddr = ADDRESS_2
def init_outgoing_and_proto(_):