Edgewall Software

Changes between Version 78 and Version 79 of TracNotification


Ignore:
Timestamp:
Oct 13, 2013, 11:27:53 PM (11 years ago)
Author:
Peter Suter
Comment:

Added some missing configuration options admit_domains, ambiguous_char_width and batch_subject_template

Legend:

Unmodified
Added
Removed
Modified
  • TracNotification

    v78 v79  
    4444 * '''`use_public_cc`''': (''since 0.10'') Addresses in To: (owner, reporter) and Cc: lists are visible by all recipients (default is ''Bcc:'' - hidden copy).
    4545 * '''`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.
    46  * '''`ignore_domains`''': Comma-separated list of domains that should not be considered part of email addresses (for usernames with Kerberos domains).
     46 * '''`ignore_domains`''': (''since 0.11'') Comma-separated list of domains that should not be considered part of email addresses (for usernames with Kerberos domains).
     47 * '''`admit_domains`''': (''since 0.11'') Comma-separated list of domains that should be considered as valid for email addresses (such as localdomain).
    4748 * '''`mime_encoding`''': (''since 0.10'') This option allows selecting the MIME encoding scheme. Supported values:
    4849   * `none`: default value, uses 7bit encoding if the text is plain ASCII, or 8bit otherwise.
    4950   * `base64`: works with any kind of content. May cause some issues with touchy anti-spam/anti-virus engines.
    5051   * `qp` or `quoted-printable`: best for european languages (more compact than base64) if 8bit encoding cannot be used.
     52 * '''`ambiguous_char_width`''': (''since 0.12.2'') Which width of ambiguous characters (e.g. 'single' or 'double') should be used in the table of notification mail. If 'single', the same width as characters in US-ASCII. This is expected by most users. If 'double', twice the width of US-ASCII characters. This is expected by CJK users.
    5153 * '''`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.
     54 * '''`batch_subject_template`''': (since 1.0) Like ticket_subject_template but for batch modifications.
    5255 * '''`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:
    5356   * `SmtpEmailSender`: connects to an SMTP server (default).