|
1 | 1 | # Roundup Issue Tracker configuration support |
2 | 2 | # |
3 | | -# $Id: configuration.py,v 1.50 2007-11-14 14:57:47 schlatterbeck Exp $ |
| 3 | +# $Id: configuration.py,v 1.51 2008-09-01 02:30:06 richard Exp $ |
4 | 4 | # |
5 | 5 | __docformat__ = "restructuredtext" |
6 | 6 |
|
@@ -478,12 +478,16 @@ def str2value(self, value): |
478 | 478 | "specified above. If this option is not set, all static\n" |
479 | 479 | "files are taken from the TEMPLATES directory"), |
480 | 480 | (MailAddressOption, "admin_email", "roundup-admin", |
481 | | - "Email address that roundup will complain to" |
482 | | - " if it runs into trouble."), |
| 481 | + "Email address that roundup will complain to if it runs\n" |
| 482 | + "into trouble.\n" |
| 483 | + "If no domain is specified then the config item\n" |
| 484 | + "mail -> domain is added."), |
483 | 485 | (MailAddressOption, "dispatcher_email", "roundup-admin", |
484 | 486 | "The 'dispatcher' is a role that can get notified\n" |
485 | 487 | "of new items to the database.\n" |
486 | | - "It is used by the ERROR_MESSAGES_TO config setting."), |
| 488 | + "It is used by the ERROR_MESSAGES_TO config setting.\n" |
| 489 | + "If no domain is specified then the config item\n" |
| 490 | + "mail -> domain is added."), |
487 | 491 | (Option, "email_from_tag", "", |
488 | 492 | "Additional text to include in the \"name\" part\n" |
489 | 493 | "of the From: address used in nosy messages.\n" |
@@ -538,7 +542,8 @@ def str2value(self, value): |
538 | 542 | "that is required to get to the home page of the tracker.\n" |
539 | 543 | "You MUST include a trailing '/' in the URL."), |
540 | 544 | (MailAddressOption, "email", "issue_tracker", |
541 | | - "Email address that mail to roundup should go to."), |
| 545 | + "Email address that mail to roundup should go to.\n" |
| 546 | + "If no domain is specified then mail_domain is added."), |
542 | 547 | (NullableOption, "language", "", |
543 | 548 | "Default locale name for this tracker.\n" |
544 | 549 | "If this option is not set, the language is determined\n" |
@@ -606,7 +611,12 @@ def str2value(self, value): |
606 | 611 | "Allowed values: DEBUG, INFO, WARNING, ERROR"), |
607 | 612 | )), |
608 | 613 | ("mail", ( |
609 | | - (Option, "domain", NODEFAULT, "Domain name used for email addresses."), |
| 614 | + (Option, "domain", NODEFAULT, |
| 615 | + "The email domain that admin_email, issue_tracker and\n" |
| 616 | + "dispatcher_email belong to.\n" |
| 617 | + "This domain is added to those config items if they don't\n" |
| 618 | + "explicitly include a domain.\n" |
| 619 | + "Do not include the '@' symbol."), |
610 | 620 | (Option, "host", NODEFAULT, |
611 | 621 | "SMTP mail host that roundup will use to send mail", |
612 | 622 | ["MAILHOST"],), |
|
0 commit comments