Fossil SCM

Fix typos and update documentation.

drh 2018-06-23 20:11 trunk
Commit 08165ad45eb6135b62b46d9483967eaaef6d7e8c57190e457c3fe1b7657edf1e
2 files changed +1 -1 +11 -11
+1 -1
--- src/email.c
+++ src/email.c
@@ -855,11 +855,11 @@
855855
** WEBPAGE: subscribe
856856
**
857857
** Allow users to subscribe to email notifications.
858858
**
859859
** 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.
861861
** Access to this page by a logged in user (other than an
862862
** administrator) results in a redirect to the /alerts page.
863863
**
864864
** Administrators can visit this page in order to sign up other
865865
** users.
866866
--- 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 @@
6666
host computer has a command like /usr/sbin/sendmail that will
6767
accept well-formed email messages from standard input and forward
6868
them to the appropriate destination.
6969
7070
2. <b>"db"</b> &rarr; 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> &rarr; Write outgoing email messages as individual
8281
files in a designated directory. This might be useful for
8382
testing and debugging.
8483
8584
Internally, there is a fourth email sending method named "stdout"
8685
which simply writes the text of the email message on standard output.
@@ -123,10 +122,11 @@
123122
Web pages:
124123
125124
* The [/subscribe](/help?cmd=/subscribe) page
126125
* The [/alerts](/help?cmd=/alerts) page
127126
* The [/unsubscribe](/help?cmd=/unsubscribe) page
127
+ * The [/msgadmin](/help?cmd=/msgadmin) page
128128
129129
Web pages for administrators only:
130130
131131
* The [/setup_email](/help?cmd=/setup_email) page
132132
* The [/subscribers](/help?cmd=/subscribers) page
133133
--- 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> &rarr; 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> &rarr; 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> &rarr; 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

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button