Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a mimetype typo that prevents email notification from running. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
adc23c107d30df86b3887d65a12bf058 |
| User & Date: | drh 2018-07-17 15:10:38.622 |
Context
|
2018-07-17
| ||
| 15:32 | Webmail changes compile on linux, mac, and windows now, so merge them to trunk. They are not ready for use, but they should not interfere with the stable parts of the code, and it is easier to test from trunk. ... (check-in: 0f6a5ee117 user: drh tags: trunk) | |
| 15:10 | Fix a mimetype typo that prevents email notification from running. ... (check-in: adc23c107d user: drh tags: trunk) | |
| 15:10 | Fix a mimetype typo that prevents email notification from running. ... (Closed-Leaf check-in: e2fd46ddcc user: drh tags: webmail) | |
|
2018-07-16
| ||
| 13:33 | Initialize variable to quell compiler warning about potentially unitialized variable. ... (check-in: 0cb83decdd user: andybradford tags: trunk) | |
Changes
Changes to src/cgi.c.
| ︙ | ︙ | |||
341 342 343 344 345 346 347 |
}
fflush(g.httpOut);
CGIDEBUG(("DONE\n"));
/* After the webpage has been sent, do any useful background
** processing.
*/
| | | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
}
fflush(g.httpOut);
CGIDEBUG(("DONE\n"));
/* After the webpage has been sent, do any useful background
** processing.
*/
if( iReplyStatus==200 && fossil_strcmp(zContentType,"text/html")==0 ){
email_auto_exec();
}
}
/*
** Do a redirect request to the URL given in the argument.
**
|
| ︙ | ︙ |