Mercurial > p > roundup > code
changeset 7658:d30e534b078a
clarify doc on dispatcher_email config setting.
An issue was brought up on the mailing list.
https://sourceforge.net/p/roundup/mailman/message/43383465/
The description of dispatcher_email sounds like it should be sent
email on issue creation. That's not it's role. Try to make it's role
more obvious.
Fix config.ini and reference.txt description.
Add the newissuecopy.py detector to send email on the creation of an
issue
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 10 Oct 2023 20:33:22 -0400 |
| parents | 6ed521352d22 |
| children | e9a2b74150bd |
| files | doc/reference.txt roundup/configuration.py |
| diffstat | 2 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/reference.txt Sun Oct 08 23:48:00 2023 -0400 +++ b/doc/reference.txt Tue Oct 10 20:33:22 2023 -0400 @@ -144,10 +144,10 @@ below is used. dispatcher_email -- ``roundup-admin`` - The 'dispatcher' is a role that can get notified of new items to the - database. It is used by the ERROR_MESSAGES_TO config setting. If the - email address doesn't contain an ``@`` part, the MAIL_DOMAIN defined - below is used. + The 'dispatcher' is a role that can get notified when errors occur + while sending email to a user. It is used by the ERROR_MESSAGES_TO config + setting. If the email address doesn't contain an ``@`` part, the + MAIL_DOMAIN defined below is used. email_from_tag -- default *blank* Additional text to include in the "name" part of the From: address used
--- a/roundup/configuration.py Sun Oct 08 23:48:00 2023 -0400 +++ b/roundup/configuration.py Tue Oct 10 20:33:22 2023 -0400 @@ -1026,7 +1026,7 @@ "mail -> domain is added."), (MailAddressOption, "dispatcher_email", "roundup-admin", "The 'dispatcher' is a role that can get notified\n" - "of new items to the database.\n" + "when errors occur while sending email to a user.\n" "It is used by the ERROR_MESSAGES_TO config setting.\n" "If no domain is specified then the config item\n" "mail -> domain is added."),
