Fossil SCM
Fix typos and update documentation.
Commit
08165ad45eb6135b62b46d9483967eaaef6d7e8c57190e457c3fe1b7657edf1e
Parent
159105895173a45…
2 files changed
+1
-1
+11
-11
+1
-1
| --- src/email.c | ||
| +++ src/email.c | ||
| @@ -855,11 +855,11 @@ | ||
| 855 | 855 | ** WEBPAGE: subscribe |
| 856 | 856 | ** |
| 857 | 857 | ** Allow users to subscribe to email notifications. |
| 858 | 858 | ** |
| 859 | 859 | ** This page is usually run by users who are not logged in. |
| 860 | -** A logged-in user can add email notificates on the /alerts page. | |
| 860 | +** A logged-in user can add email notifications on the /alerts page. | |
| 861 | 861 | ** Access to this page by a logged in user (other than an |
| 862 | 862 | ** administrator) results in a redirect to the /alerts page. |
| 863 | 863 | ** |
| 864 | 864 | ** Administrators can visit this page in order to sign up other |
| 865 | 865 | ** users. |
| 866 | 866 |
| --- src/email.c | |
| +++ src/email.c | |
| @@ -855,11 +855,11 @@ | |
| 855 | ** WEBPAGE: subscribe |
| 856 | ** |
| 857 | ** Allow users to subscribe to email notifications. |
| 858 | ** |
| 859 | ** This page is usually run by users who are not logged in. |
| 860 | ** A logged-in user can add email notificates on the /alerts page. |
| 861 | ** Access to this page by a logged in user (other than an |
| 862 | ** administrator) results in a redirect to the /alerts page. |
| 863 | ** |
| 864 | ** Administrators can visit this page in order to sign up other |
| 865 | ** users. |
| 866 |
| --- src/email.c | |
| +++ src/email.c | |
| @@ -855,11 +855,11 @@ | |
| 855 | ** WEBPAGE: subscribe |
| 856 | ** |
| 857 | ** Allow users to subscribe to email notifications. |
| 858 | ** |
| 859 | ** This page is usually run by users who are not logged in. |
| 860 | ** A logged-in user can add email notifications on the /alerts page. |
| 861 | ** Access to this page by a logged in user (other than an |
| 862 | ** administrator) results in a redirect to the /alerts page. |
| 863 | ** |
| 864 | ** Administrators can visit this page in order to sign up other |
| 865 | ** users. |
| 866 |
+11
-11
| --- www/emaildesign.md | ||
| +++ www/emaildesign.md | ||
| @@ -66,21 +66,20 @@ | ||
| 66 | 66 | host computer has a command like /usr/sbin/sendmail that will |
| 67 | 67 | accept well-formed email messages from standard input and forward |
| 68 | 68 | them to the appropriate destination. |
| 69 | 69 | |
| 70 | 70 | 2. <b>"db"</b> → Write outgoing email messages into an |
| 71 | - SQLite database file. The self-hosting Fossil website will | |
| 72 | - probably use this technique because Fossil runs inside a | |
| 73 | - reduced-privilege chroot jail and cannot invoke commands | |
| 74 | - like /usr/sbin/sendmail. A separate TCL script running on | |
| 75 | - the outside of the jail monitors the database and forwards | |
| 76 | - email messages to the Postfix mail transfer agent. There is | |
| 77 | - an example TCL script in the | |
| 78 | - [tools/email-monitor.tcl](/file/tools/email-monitor.tcl) file | |
| 79 | - of the source tree that shows how to do this. | |
| 80 | - | |
| 81 | - 3. <b>"dir"</b> $rarr; Write outgoing email messages as individual | |
| 71 | + SQLite database file. The self-hosting Fossil website uses | |
| 72 | + this technique because Fossil runs inside a reduced-privilege | |
| 73 | + chroot jail and cannot invoke commands like /usr/sbin/sendmail. | |
| 74 | + A separate TCL script running outside of the jail monitors | |
| 75 | + the email queue database and forwards email messages to the | |
| 76 | + Postfix mail transfer agent. There is an example TCL script in the | |
| 77 | + [tools/email-sender.tcl](/file/tools/email-sender.tcl) file | |
| 78 | + of the source tree that shows how to this is done. | |
| 79 | + | |
| 80 | + 3. <b>"dir"</b> → Write outgoing email messages as individual | |
| 82 | 81 | files in a designated directory. This might be useful for |
| 83 | 82 | testing and debugging. |
| 84 | 83 | |
| 85 | 84 | Internally, there is a fourth email sending method named "stdout" |
| 86 | 85 | which simply writes the text of the email message on standard output. |
| @@ -123,10 +122,11 @@ | ||
| 123 | 122 | Web pages: |
| 124 | 123 | |
| 125 | 124 | * The [/subscribe](/help?cmd=/subscribe) page |
| 126 | 125 | * The [/alerts](/help?cmd=/alerts) page |
| 127 | 126 | * The [/unsubscribe](/help?cmd=/unsubscribe) page |
| 127 | + * The [/msgadmin](/help?cmd=/msgadmin) page | |
| 128 | 128 | |
| 129 | 129 | Web pages for administrators only: |
| 130 | 130 | |
| 131 | 131 | * The [/setup_email](/help?cmd=/setup_email) page |
| 132 | 132 | * The [/subscribers](/help?cmd=/subscribers) page |
| 133 | 133 |
| --- www/emaildesign.md | |
| +++ www/emaildesign.md | |
| @@ -66,21 +66,20 @@ | |
| 66 | host computer has a command like /usr/sbin/sendmail that will |
| 67 | accept well-formed email messages from standard input and forward |
| 68 | them to the appropriate destination. |
| 69 | |
| 70 | 2. <b>"db"</b> → Write outgoing email messages into an |
| 71 | SQLite database file. The self-hosting Fossil website will |
| 72 | probably use this technique because Fossil runs inside a |
| 73 | reduced-privilege chroot jail and cannot invoke commands |
| 74 | like /usr/sbin/sendmail. A separate TCL script running on |
| 75 | the outside of the jail monitors the database and forwards |
| 76 | email messages to the Postfix mail transfer agent. There is |
| 77 | an example TCL script in the |
| 78 | [tools/email-monitor.tcl](/file/tools/email-monitor.tcl) file |
| 79 | of the source tree that shows how to do this. |
| 80 | |
| 81 | 3. <b>"dir"</b> $rarr; Write outgoing email messages as individual |
| 82 | files in a designated directory. This might be useful for |
| 83 | testing and debugging. |
| 84 | |
| 85 | Internally, there is a fourth email sending method named "stdout" |
| 86 | which simply writes the text of the email message on standard output. |
| @@ -123,10 +122,11 @@ | |
| 123 | Web pages: |
| 124 | |
| 125 | * The [/subscribe](/help?cmd=/subscribe) page |
| 126 | * The [/alerts](/help?cmd=/alerts) page |
| 127 | * The [/unsubscribe](/help?cmd=/unsubscribe) page |
| 128 | |
| 129 | Web pages for administrators only: |
| 130 | |
| 131 | * The [/setup_email](/help?cmd=/setup_email) page |
| 132 | * The [/subscribers](/help?cmd=/subscribers) page |
| 133 |
| --- www/emaildesign.md | |
| +++ www/emaildesign.md | |
| @@ -66,21 +66,20 @@ | |
| 66 | host computer has a command like /usr/sbin/sendmail that will |
| 67 | accept well-formed email messages from standard input and forward |
| 68 | them to the appropriate destination. |
| 69 | |
| 70 | 2. <b>"db"</b> → Write outgoing email messages into an |
| 71 | SQLite database file. The self-hosting Fossil website uses |
| 72 | this technique because Fossil runs inside a reduced-privilege |
| 73 | chroot jail and cannot invoke commands like /usr/sbin/sendmail. |
| 74 | A separate TCL script running outside of the jail monitors |
| 75 | the email queue database and forwards email messages to the |
| 76 | Postfix mail transfer agent. There is an example TCL script in the |
| 77 | [tools/email-sender.tcl](/file/tools/email-sender.tcl) file |
| 78 | of the source tree that shows how to this is done. |
| 79 | |
| 80 | 3. <b>"dir"</b> → Write outgoing email messages as individual |
| 81 | files in a designated directory. This might be useful for |
| 82 | testing and debugging. |
| 83 | |
| 84 | Internally, there is a fourth email sending method named "stdout" |
| 85 | which simply writes the text of the email message on standard output. |
| @@ -123,10 +122,11 @@ | |
| 122 | Web pages: |
| 123 | |
| 124 | * The [/subscribe](/help?cmd=/subscribe) page |
| 125 | * The [/alerts](/help?cmd=/alerts) page |
| 126 | * The [/unsubscribe](/help?cmd=/unsubscribe) page |
| 127 | * The [/msgadmin](/help?cmd=/msgadmin) page |
| 128 | |
| 129 | Web pages for administrators only: |
| 130 | |
| 131 | * The [/setup_email](/help?cmd=/setup_email) page |
| 132 | * The [/subscribers](/help?cmd=/subscribers) page |
| 133 |