Changes between Version 47 and Version 48 of AnnouncerPlugin


Ignore:
Timestamp:
Sep 15, 2010, 12:48:00 AM (14 years ago)
Author:
Robert Corsaro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnnouncerPlugin

    v47 v48  
    219219As stated before, as of [8087] there is preliminary support for sending encrypted and/or cryptographically signed emails. OpenPGP support is provided by [http://www.gnupg.org/ GnuPG] and working only with plain text formatted messages by now. There's still a lot to be done. See more details at the corresponding [wiki:AnnouncerPlugin/MessageEncryption development page].
    220220
     221Email delivery configuration has been changed significantly.  sendmail functionality has been added.  smtp configuration has been split out into it's own section.  Save yourself some trouble and install IniAdmin.  New settings with default [#EmailConfig below].
     222
     223
    221224Want to get started hacking announcer?  Here's what'd I do.  Replace vim with the editor of your choice.  Replace git with the SCM of your choice.
    222225
     
    294297Again, for more details see the [t:wiki:CookBook/PluginL10N#Compileanduseit l10n cookbook page for Trac plugins].
    295298
     299=== Email Config ===
     300
     301{{{
     302#!ini
     303[announcer]
     304email_address_resolvers = SpecifiedEmailResolver, SessionEmailResolver, DefaultDomainEmailResolver
     305email_sender = SmtpEmailSender
     306email_enabled = true
     307email_from = trac@localhost
     308email_from_name =
     309email_replyto = trac@localhost
     310mime_encoding = base64
     311use_public_cc = false
     312email_subject_prefix = __default__
     313email_to = undisclosed-recipients: ;
     314use_threaded_delivery = false
     315default+email_format = text/plain
     316
     317[smtp]
     318server = localhost
     319timeout = 10
     320port = 25
     321user =
     322password =
     323use_tls = false
     324use_sll = false
     325debuglevel = 0
     326
     327[sendmail]
     328sendmail_path = sendmail
     329}}}
     330
    296331== Recent Changes ==
    297332