Fossil SCM
Add email-url, email-admin, and email-subname to the settings that can be managed by the "fossil alert setting" command.
Commit
a0ae0c9ff660fba55db63b9da3f0d07c7fe6510e8a210cf667d529c066ab55ef
Parent
8ccab68fc6f679d…
1 file changed
+16
+16
| --- src/alerts.c | ||
| +++ src/alerts.c | ||
| @@ -919,10 +919,26 @@ | ||
| 919 | 919 | fossil_print("%s", blob_str(&all)); |
| 920 | 920 | } |
| 921 | 921 | blob_reset(&all); |
| 922 | 922 | } |
| 923 | 923 | |
| 924 | +/* | |
| 925 | +** SETTING: email-url width=40 | |
| 926 | +** This URL is used as the basename for hyperlinks included in email alert | |
| 927 | +** text. Omit the trailing "/". | |
| 928 | +*/ | |
| 929 | +/* | |
| 930 | +** SETTING: email-admin width=40 | |
| 931 | +** This is the email address for the human administrator for the system. | |
| 932 | +** Abuse and trouble reports and password reset requests are send here. | |
| 933 | +*/ | |
| 934 | +/* | |
| 935 | +** SETTING: email-subname width=16 | |
| 936 | +** This is a short name used to identifies the repository in the Subject: | |
| 937 | +** line of email alerts. Traditionally this name is included in square | |
| 938 | +** brackets. Examples: "[fossil-src]", "[sqlite-src]". | |
| 939 | +*/ | |
| 924 | 940 | /* |
| 925 | 941 | ** SETTING: email-send-method width=5 default=off |
| 926 | 942 | ** Determine the method used to send email. Allowed values are |
| 927 | 943 | ** "off", "relay", "pipe", "dir", "db", and "stdout". The "off" value |
| 928 | 944 | ** means no email is ever sent. The "relay" value means emails are sent |
| 929 | 945 |
| --- src/alerts.c | |
| +++ src/alerts.c | |
| @@ -919,10 +919,26 @@ | |
| 919 | fossil_print("%s", blob_str(&all)); |
| 920 | } |
| 921 | blob_reset(&all); |
| 922 | } |
| 923 | |
| 924 | /* |
| 925 | ** SETTING: email-send-method width=5 default=off |
| 926 | ** Determine the method used to send email. Allowed values are |
| 927 | ** "off", "relay", "pipe", "dir", "db", and "stdout". The "off" value |
| 928 | ** means no email is ever sent. The "relay" value means emails are sent |
| 929 |
| --- src/alerts.c | |
| +++ src/alerts.c | |
| @@ -919,10 +919,26 @@ | |
| 919 | fossil_print("%s", blob_str(&all)); |
| 920 | } |
| 921 | blob_reset(&all); |
| 922 | } |
| 923 | |
| 924 | /* |
| 925 | ** SETTING: email-url width=40 |
| 926 | ** This URL is used as the basename for hyperlinks included in email alert |
| 927 | ** text. Omit the trailing "/". |
| 928 | */ |
| 929 | /* |
| 930 | ** SETTING: email-admin width=40 |
| 931 | ** This is the email address for the human administrator for the system. |
| 932 | ** Abuse and trouble reports and password reset requests are send here. |
| 933 | */ |
| 934 | /* |
| 935 | ** SETTING: email-subname width=16 |
| 936 | ** This is a short name used to identifies the repository in the Subject: |
| 937 | ** line of email alerts. Traditionally this name is included in square |
| 938 | ** brackets. Examples: "[fossil-src]", "[sqlite-src]". |
| 939 | */ |
| 940 | /* |
| 941 | ** SETTING: email-send-method width=5 default=off |
| 942 | ** Determine the method used to send email. Allowed values are |
| 943 | ** "off", "relay", "pipe", "dir", "db", and "stdout". The "off" value |
| 944 | ** means no email is ever sent. The "relay" value means emails are sent |
| 945 |