Edgewall Software

Changes between Version 12 and Version 13 of CookBook/Notification/Subscriptions


Ignore:
Timestamp:
Jun 9, 2018, 9:30:51 AM (6 years ago)
Author:
figaro
Comment:

Standardise emphasis

Legend:

Unmodified
Added
Removed
Modified
  • CookBook/Notification/Subscriptions

    v12 v13  
    11= Custom Notification Subscriptions
     2
    23[[PageOutline(2)]]
    34
     
    56
    67== Subscribe to all ticket notifications
     8
    79The [TracIni#notification-smtp_always_cc-option "[notification] smtp_always_cc"] config option will send ''all notifications'' to the specified address.
    810Without plugins this is the same as ''all ticket notifications'', but some plugins may send non-ticket notifications that you don't want to send to that address.
     
    7476== Subscribe to new created tickets
    7577
    76 //Note: This subscriber was added to Trac in release 1.2.3//.
    77 
    78 Some projects / users want to subscribe only to new created ticket notifications:
     78'''Note''': This subscriber was added to Trac in release 1.2.3.
     79
     80Some projects / users want to subscribe only to newly created ticket notifications:
    7981
    80821. Create a [TracDev/PluginDevelopment#Singlefileplugins single file plugin] that implements [wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.notification.api.INotificationSubscriber INotificationSubscriber]:
     
    208210from trac.notification.model import Subscription
    209211from trac.util.translation import _
    210 
    211212
    212213class BlockerSeverityTicketSubscriber(Component):
     
    271272from trac.ticket.model import Ticket
    272273from trac.util.translation import _
    273 
    274274
    275275class ReplyToTicketSubscriber(Component):