Changes between Version 1 and Version 2 of TracNotification


Ignore:
Timestamp:
Mar 28, 2008, 2:16:35 PM (16 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracNotification

    v1 v2  
    1919 * '''smtp_enabled''': Enable email notification.
    2020 * '''smtp_server''': SMTP server used for notification messages.
     21 * '''smtp_port''': (''since 0.9'') Port used to contact the SMTP server.
    2122 * '''smtp_user''': (''since 0.9'') User name for authentication SMTP account.
    2223 * '''smtp_password''': (''since 0.9'') Password for authentication SMTP account.
     
    2627 * '''smtp_always_cc''': List of email addresses to always send notifications to. ''Typically used to post ticket changes to a dedicated mailing list.''
    2728 * '''smtp_always_bcc''': (''since 0.10'') List of email addresses to always send notifications to, but keeps addresses not visible from other recipients of the notification email
    28  * '''always_notify_reporter''':  Always send notifications to any address in the reporter field.
    29  * '''always_notify_owner''': (''since 0.9'') Always send notifications to the address in the owner field.
    30  * '''always_notify_updater''': (''since 0.10'') Always send a notification to the updater of a ticket.
     29 * '''smtp_subject_prefix''': (''since 0.10.1'') Text that is inserted before the subject of the email. Set to "!__default!__" by default.
     30 * '''always_notify_reporter''':  Always send notifications to any address in the reporter field (default: false).
     31 * '''always_notify_owner''': (''since 0.9'') Always send notifications to the address in the owner field (default: false).
     32 * '''always_notify_updater''': (''since 0.10'') Always send a notification to the updater of a ticket (default: true).
    3133 * '''use_public_cc''': (''since 0.10'') Addresses in To: (owner, reporter) and Cc: lists are visible by all recipients (default is ''Bcc:'' - hidden copy).
    3234 * '''use_short_addr''': (''since 0.10'') Enable delivery of notifications to addresses that do not contain a domain (i.e. do not end with ''@<domain.com>'').This option is useful for intranets, where the SMTP server can handle local addresses and map the username/login to a local mailbox. See also `smtp_default_domain`. Do not use this option with a public SMTP server.
     35 * '''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.
    3336 * '''mime_encoding''': (''since 0.10'') E-mail notifications are always sent in 7-bit mode. This option allows to select the MIME encoding scheme. Supported values:
    3437   * `base64`: default value, works with any kind of content. May cause some issues with touchy anti-spam/anti-virus engines.
     
    7578}}}
    7679
     80== Filtering notifications for one's own changes ==
     81In Gmail, use the filter:
     82
     83{{{
     84from:(<smtp_from>) (("Reporter: <username>" -Changes) OR "Changes (by <username>)")
     85}}}
     86
     87to delete these notifications.
     88
    7789== Troubleshooting ==
    7890
     
    113125The default Trac configuration uses Base64 encoding to send emails to the recipients. The whole body of the email is encoded, which sometimes trigger ''false positive'' SPAM detection on sensitive email servers. In such an event, it is recommended to change the default encoding to "quoted-printable" using the `mime_encoding` option.
    114126
    115 Quoted printable enconding works better with languages that use one of the Latin charsets. For Asian charsets, it is recommended to stick with the Base64 encoding.
     127Quoted printable encoding works better with languages that use one of the Latin charsets. For Asian charsets, it is recommended to stick with the Base64 encoding.
    116128
    117129----