Mercurial > p > roundup > code
changeset 4013:a5b68d46bce8 1.4.6
Try to clarify mail_domain config setting
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 01 Sep 2008 02:30:06 +0000 |
| parents | 5bf05d2b3cf8 |
| children | b80224c1f4e3 |
| files | CHANGES.txt roundup/configuration.py |
| diffstat | 2 files changed, 17 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Mon Sep 01 01:58:32 2008 +0000 +++ b/CHANGES.txt Mon Sep 01 02:30:06 2008 +0000 @@ -5,6 +5,7 @@ Fixed: - Fix bug introduced in 1.4.5 in RDBMS full-text indexing - Make URL matching code less matchy +- Try to clarify mail_domain config setting 2008-08-19 1.4.5
--- a/roundup/configuration.py Mon Sep 01 01:58:32 2008 +0000 +++ b/roundup/configuration.py Mon Sep 01 02:30:06 2008 +0000 @@ -1,6 +1,6 @@ # Roundup Issue Tracker configuration support # -# $Id: configuration.py,v 1.50 2007-11-14 14:57:47 schlatterbeck Exp $ +# $Id: configuration.py,v 1.51 2008-09-01 02:30:06 richard Exp $ # __docformat__ = "restructuredtext" @@ -478,12 +478,16 @@ "specified above. If this option is not set, all static\n" "files are taken from the TEMPLATES directory"), (MailAddressOption, "admin_email", "roundup-admin", - "Email address that roundup will complain to" - " if it runs into trouble."), + "Email address that roundup will complain to if it runs\n" + "into trouble.\n" + "If no domain is specified then the config item\n" + "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" - "It is used by the ERROR_MESSAGES_TO config setting."), + "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."), (Option, "email_from_tag", "", "Additional text to include in the \"name\" part\n" "of the From: address used in nosy messages.\n" @@ -538,7 +542,8 @@ "that is required to get to the home page of the tracker.\n" "You MUST include a trailing '/' in the URL."), (MailAddressOption, "email", "issue_tracker", - "Email address that mail to roundup should go to."), + "Email address that mail to roundup should go to.\n" + "If no domain is specified then mail_domain is added."), (NullableOption, "language", "", "Default locale name for this tracker.\n" "If this option is not set, the language is determined\n" @@ -606,7 +611,12 @@ "Allowed values: DEBUG, INFO, WARNING, ERROR"), )), ("mail", ( - (Option, "domain", NODEFAULT, "Domain name used for email addresses."), + (Option, "domain", NODEFAULT, + "The email domain that admin_email, issue_tracker and\n" + "dispatcher_email belong to.\n" + "This domain is added to those config items if they don't\n" + "explicitly include a domain.\n" + "Do not include the '@' symbol."), (Option, "host", NODEFAULT, "SMTP mail host that roundup will use to send mail", ["MAILHOST"],),
