changeset 1904:69e95ad5b6f0 beta

fixed BCC problem in mailing library - backported from my fixes in pyramid_mailer
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 15 Jan 2012 20:19:56 +0200
parents bdf16af5472a
children fbddaf2f9728
files rhodecode/lib/db_manage.py rhodecode/lib/rcmail/message.py
diffstat 2 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/lib/db_manage.py	Sat Jan 14 17:20:04 2012 +0200
+++ b/rhodecode/lib/db_manage.py	Sun Jan 15 20:19:56 2012 +0200
@@ -170,6 +170,7 @@
 
             def step_4(self):
                 print ('TODO:')
+                raise NotImplementedError()
 
         upgrade_steps = [0] + range(curr_version + 1, __dbversion__ + 1)
 
--- a/rhodecode/lib/rcmail/message.py	Sat Jan 14 17:20:04 2012 +0200
+++ b/rhodecode/lib/rcmail/message.py	Sun Jan 15 20:19:56 2012 +0200
@@ -99,9 +99,6 @@
                                 Html=self.html,
                                 separator=self.recipients_separator)
 
-        if self.bcc:
-            response.base['Bcc'] = self.bcc
-
         if self.cc:
             response.base['Cc'] = self.cc