Changes between Version 70 and Version 71 of AnnouncerPlugin


Ignore:
Timestamp:
Dec 12, 2013, 11:17:26 PM (10 years ago)
Author:
ptankov@…
Comment:

Changed all occurrences of DefaultDomainResolver to DefaultDomainEmailResolver

Legend:

Unmodified
Added
Removed
Modified
  • AnnouncerPlugin

    v70 v71  
    207207Currently, the following resolvers can be configured to map usernames to email addresses:
    208208
    209  * ''!DefaultDomainResolver'': This will simply blindly append the domain specified in [announcer] smtp_default_domain onto the end of the username.
     209 * ''!DefaultDomainEmailResolver'': This will simply blindly append the domain specified in [announcer] smtp_default_domain onto the end of the username.
    210210 * ''!SpecifiedEmailResolver'': This will allow the user to override the email address in Trac (or anywhere else) to demand all email be sent to a certain address specified in their user preferences (and separate from Trac's normal address)
    211211 * ''!SessionEmailResolver'': This will retrieve the email address associated with the username's Trac session.
     
    216216#!ini
    217217[announcer]
    218 email_address_resolvers = DefaultDomainResolver, SpecifiedEmailResolver, SessionEmailResolver
    219 }}}
    220 
    221 then the only resolver, that will ever be checked, would be !DefaultDomainResolver -- it blindly appends a domain name, after all. Its best for last.
     218email_address_resolvers = DefaultDomainEmailResolver, SpecifiedEmailResolver, SessionEmailResolver
     219}}}
     220
     221then the only resolver, that will ever be checked, would be !DefaultDomainEmailResolver -- it blindly appends a domain name, after all. Its best for last.
    222222
    223223The recommended setting is:
     
    228228}}}
    229229
    230 Unless you're in an intranet setup and !DefaultDomainResolver is appropriate at the end.
     230Unless you're in an intranet setup and !DefaultDomainEmailResolver is appropriate at the end.
    231231
    232232=== Plugins ===