Changes between Version 2 and Version 3 of TracNotification


Ignore:
Timestamp:
11/18/04 18:02:59 (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracNotification

    v2 v3  
    11= Email Notification of Ticket Changes =
    2 Trac supports automatic email notification upon ticket changes.
     2[[TracGuideToc]]
    33
    4 '''Note:''' This feature is disabled by default, and must be configured to be activated.
     4Trac supports basic notification for ticket changes using email.
     5
     6Email notification is useful to keep users up-to-date on tickets/issues of interest, and also provides a convenient way to post ticket changes to a dedicated mailing list. '''Note:''' As an example, this is how the [http://lists.edgewall.com/archive/trac-tickets/ Trac-tickets] mailing list works.
     7
     8Disabled by default, notification can be activated and configured in [wiki:TracIni trac.ini].
    59
    610== Receiving Notification ==
    7 When reporting a new ticket or adding a comment, if you enter a valid email address in the ''reporter'', ''editor'' or ''cc'' field, you will automatically receive an email upon future changes to the ticket.
     11When reporting a new ticket or adding a comment, enter a validing email address in the ''reporter'', ''editor'' or ''cc'' field. Trac will automatically send you an email when changes are made to the ticket.
    812
    913This is useful to keep up-to-date on an issue or enhancement request that interests you.
     
    1519 * '''smtp_enabled''': Enable notification.
    1620 * '''smtp_server''': SMTP server used for notification messages.
     21 * '''smtp_from''': Email address to use for ''Sender''-headers in notification emails.
    1722 * '''smtp_replyto''': Email address to use for ''Reply-To''-headers in notification emails.
    1823 * '''smtp_always_cc''': List of email addresses to always send notifications to. ''Typically used to post ticket changes to a dedicated mailing list.''
     24 * '''always_notify_reporter''':  Always send notifications to any address in the reporter field.
     25
     26Either '''smtp_from''' or '''smtp_replyto''' (or both) ''must'' be set, otherwise Trac refuses to send notification mails.
    1927
    2028=== Example Configuration ===
     
    2432smtp_enabled = true
    2533smtp_server = mail.example.com
     34smtp_from = notifier@example.com
    2635smtp_replyto = myproj@projects.example.com
    2736smtp_always_cc = ticketmaster@example.com, theboss+myproj@example.com
     
    5463}}}
    5564----
    56 See also: TracTickets
     65See also: TracTickets, TracIni, TracGuide