Changes between Version 5 and Version 6 of TracNotification
- Timestamp:
- Oct 1, 2024, 10:09:32 PM (6 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracNotification
v5 v6 20 20 Alternatively, a default domain name ('''`smtp_default_domain`''') can be set in the TracIni file, see [#ConfigurationOptions Configuration Options] below. In this case, the default domain will be appended to the username, which can be useful for an "Intranet" kind of installation. 21 21 22 When using apache and mod_kerb for authentication against Kerberos / Active Directory, usernames take the form ('''`username@EXAMPLE.LOCAL`'''). To avoid this being interpreted as an email address, add the Kerberos domain to 22 When using apache and mod_kerb for authentication against Kerberos / Active Directory, usernames take the form ('''`username@EXAMPLE.LOCAL`'''). To avoid this being interpreted as an email address, add the Kerberos domain to ('''`ignore_domains`'''). 23 23 24 24 === Ticket attachment notifications … … 73 73 The following attributes of default subscriptions can be configured: 74 74 * `.distributor` (Default: `email`) 75 * Other values require plugins. For example `on-site` requires th:OnSiteNotificationsPlugin.75 * Other values require plugins. For example `on-site` requires [https://trac-hacks.org/wiki/OnSiteNotificationsPlugin OnSiteNotificationsPlugin]. 76 76 * `.priority` (Default: `100`) 77 77 * Smaller values override larger values. … … 80 80 * `never` can be used to silence other subscription rules with higher values. 81 81 * `.format` (Default: `text/plain`) 82 * Other values require plugins. For example `text/html` requires th:TracHtmlNotificationPlugin.82 * Other values require plugins. For example `text/html` requires [https://trac-hacks.org/wiki/TracHtmlNotificationPlugin TracHtmlNotificationPlugin]. 83 83 84 84 === Example Configuration (default subscriptions) … … 209 209 Notification errors are not always reported through the web interface, so the user who submits a change or creates a ticket may not get notified about a notification failure. The Trac administrator needs to look at the log to find the error message and traceback. 210 210 211 === ''Permission denied''error211 === Permission denied error 212 212 213 213 Typical error message: … … 240 240 }}} 241 241 242 === ''Suspected spam''error242 === Suspected spam error 243 243 244 244 Some SMTP servers may reject the notification email sent by Trac. … … 247 247 248 248 Quoted printable encoding works better with languages that use one of the Latin charsets. For Asian charsets, stick with the Base64 encoding. 249 250 === Emails not sent 251 252 If you are switching back to using Trac to send emails from, say, the [https://trac-hacks.org/wiki/AnnouncerPlugin AnnouncerPlugin], be sure to enable `EmailDistributor` in your Trac configuration. It may have been disabled when using an email plugin. There may be no message in the Trac log when all is good to go, but the actual sending is disabled. 249 253 250 254 ----