--- ticket/notification.py.orig	2007-06-06 15:57:32.000000000 +0200
+++ ticket/notification.py	2008-01-09 01:37:10.000000000 +0100
@@ -41,6 +41,10 @@
         """Always send notifications to the person who causes the ticket 
         property change.""")
 
+    cc_on_newticket = Option('notification', 'cc_on_newticket', '',
+        """Email address(es) to send notifications about newly created
+           tickets to, addresses can only be seen when use_public_cc is
+           enabled (Cc:).""")
 
 class TicketNotifyEmail(NotifyEmail):
     """Notification of ticket changes."""
@@ -220,6 +224,12 @@
             if notify_owner:
                 torecipients.append(row[2])
 
+        # Send tickets to the cc_on_newticket list of mailaddresses if this is a new ticket
+        if self.newticket:
+            nccrecipients = self.config.get('notification', 'cc_on_newticket')
+            if nccrecipients:
+                ccrecipients.append(nccrecipients)
+
         # Harvest email addresses from the author field of ticket_change(s)
         if notify_reporter:
             cursor.execute("SELECT DISTINCT author,ticket FROM ticket_change "

