Edgewall Software

Changes between Version 41 and Version 42 of TracNotification


Ignore:
Timestamp:
Mar 17, 2009, 5:34:51 PM (15 years ago)
Author:
Christian Boos
Comment:

keep the 0.12 specific stuff in 0.12/TracNotification

Legend:

Unmodified
Added
Removed
Modified
  • TracNotification

    v41 v42  
    3636   * `none`: no encoding. Use with plain english only (ASCII). E-mails with non-ASCII chars won't be delivered.
    3737 * '''`ticket_subject_template`''': (''since 0.11'') A [http://genshi.edgewall.org/wiki/Documentation/text-templates.html Genshi text template] snippet used to get the notification subject.
    38  * '''`email_sender`''': (''since 0.12'') Name of the component implementing `IEmailSender`. This component is used by the notification system to send emails. Trac currently provides the following components:
    39    * `SmtpEmailSender`: connects to an SMTP server (default).
    40    * `SendmailEmailSender`: runs a `sendmail`-compatible executable.
    4138
    4239Either '''`smtp_from`''' or '''`smtp_replyto`''' (or both) ''must'' be set, otherwise Trac refuses to send notification mails.
     
    4946 * '''`use_tls`''': (''since 0.10'') Toggle to send notifications via a SMTP server using [http://en.wikipedia.org/wiki/Transport_Layer_Security TLS], such as GMail.
    5047
    51 The following option is specific to email delivery through a `sendmail`-compatible executable.
    52  * '''`sendmail_path`''': (''since 0.12'') Path to the sendmail executable. The sendmail program must accept the `-i` and `-f` options.
    5348
    5449=== Example Configuration (SMTP) ===
     
    6257}}}
    6358
    64 === Example Configuration (`sendmail`) ===
    65 {{{
    66 [notification]
    67 smtp_enabled = true
    68 email_sender = SendmailEmailSender
    69 sendmail_path = /usr/sbin/sendmail
    70 smtp_from = notifier@example.com
    71 smtp_replyto = myproj@projects.example.com
    72 smtp_always_cc = ticketmaster@example.com, theboss+myproj@example.com
    73 }}}
    7459
    7560=== Customizing the e-mail subject ===