Changes between Version 2 and Version 3 of TracNotification
- Timestamp:
- 11/18/04 18:02:59 (20 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracNotification
v2 v3 1 1 = Email Notification of Ticket Changes = 2 Trac supports automatic email notification upon ticket changes. 2 [[TracGuideToc]] 3 3 4 '''Note:''' This feature is disabled by default, and must be configured to be activated. 4 Trac supports basic notification for ticket changes using email. 5 6 Email 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 8 Disabled by default, notification can be activated and configured in [wiki:TracIni trac.ini]. 5 9 6 10 == 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 changesto the ticket.11 When 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. 8 12 9 13 This is useful to keep up-to-date on an issue or enhancement request that interests you. … … 15 19 * '''smtp_enabled''': Enable notification. 16 20 * '''smtp_server''': SMTP server used for notification messages. 21 * '''smtp_from''': Email address to use for ''Sender''-headers in notification emails. 17 22 * '''smtp_replyto''': Email address to use for ''Reply-To''-headers in notification emails. 18 23 * '''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 26 Either '''smtp_from''' or '''smtp_replyto''' (or both) ''must'' be set, otherwise Trac refuses to send notification mails. 19 27 20 28 === Example Configuration === … … 24 32 smtp_enabled = true 25 33 smtp_server = mail.example.com 34 smtp_from = notifier@example.com 26 35 smtp_replyto = myproj@projects.example.com 27 36 smtp_always_cc = ticketmaster@example.com, theboss+myproj@example.com … … 54 63 }}} 55 64 ---- 56 See also: TracTickets 65 See also: TracTickets, TracIni, TracGuide