Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the documentation on the email-send-method setting. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
83b12c3a780d027436f295bdef09de33 |
User & Date: | drh 2018-07-12 14:29:18.924 |
Context
2018-07-12
| ||
14:55 | Add "Download", "Test", and "Truncate" submenu buttons on the /errorlog page. Show a confirmation page prior to truncating the error log. Improvements to the /test-warning page, including a link back to /errorlog through the submenu. ... (check-in: c931dd7b user: drh tags: trunk) | |
14:29 | Update the documentation on the email-send-method setting. ... (check-in: 83b12c3a user: drh tags: trunk) | |
14:21 | Put a link to the error log on the /stat page. The link is only visible to administrators. ... (check-in: 488709be user: drh tags: trunk) | |
Changes
Changes to src/email.c.
︙ | ︙ | |||
775 776 777 778 779 780 781 | /* To Do: Look for bounce messages and possibly disable subscriptions */ blob_reset(pMsg); } /* ** SETTING: email-send-method width=5 default=off ** Determine the method used to send email. Allowed values are | | > > | | | | | | < | 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 | /* To Do: Look for bounce messages and possibly disable subscriptions */ blob_reset(pMsg); } /* ** SETTING: email-send-method width=5 default=off ** Determine the method used to send email. Allowed values are ** "off", "relay", "pipe", "dir", "db", and "stdout". The "off" value ** means no email is ever sent. The "relay" value means emails are sent ** to an Mail Sending Agent using SMTP located at email-send-relayhost. ** The "pipe" value means email messages are piped into a command ** determined by the email-send-command setting. The "dir" value means ** emails are written to individual files in a directory determined ** by the email-send-dir setting. The "db" value means that emails ** are added to an SQLite database named by the* email-send-db setting. ** The "stdout" value writes email text to standard output, for debugging. */ /* ** SETTING: email-send-command width=40 ** This is a command to which outbound email content is piped when the ** email-send-method is set to "pipe". The command must extract ** recipient, sender, subject, and all other relevant information ** from the email header. |
︙ | ︙ |