Index: notification.py
===================================================================
--- notification.py	(revision 3257)
+++ notification.py	(working copy)
@@ -215,10 +215,10 @@
 
     def send(self, torcpts, ccrcpts):
         hdrs = {}
-        dest = torcpts or ccrcpts
+        dest = torcpts or ccrcpts or self.config.get('notification', 'smtp_always_cc')
         if not dest:
             self.env.log.info('no recipient for a ticket notification')
-            return 
+            return
         hdrs['Message-ID'] = self.get_message_id(dest[0], self.modtime)
         hdrs['X-Trac-Ticket-ID'] = str(self.ticket.id)
         hdrs['X-Trac-Ticket-URL'] = self.ticket['link']

