Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | For email alerts on forum posts that are in reply to a prior post that has been edited, make the In-Reply-To point to the Message-Id of the original unedited post. This should help avoid breaking threads in email readers for subscribers who do not receive notification of post edits. bug report. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
137cba6f1b81170d35627cd62d03759d |
User & Date: | drh 2020-04-10 19:01:47 |
References
2020-04-22
| ||
15:57 | For email alerts on forum posts, if the forum post is a reply to a prior post that has been edited two or more times, ensure that the In-Reply-To header on the email message refers to the very first edition of the in-reply-to post. Prior check-in [137cba6f1b81170d] attempt to do the same thing, but only worked for cases where the post was edited just once. ... (check-in: fb4545ef user: drh tags: trunk) | |
Context
2020-04-11
| ||
10:12 | Updated broken link to mailing list and archives, per report in the forum. ... (check-in: e1592a65 user: stephan tags: trunk) | |
2020-04-10
| ||
19:01 | For email alerts on forum posts that are in reply to a prior post that has been edited, make the In-Reply-To point to the Message-Id of the original unedited post. This should help avoid breaking threads in email readers for subscribers who do not receive notification of post edits. bug report. ... (check-in: 137cba6f user: drh tags: trunk) | |
17:50 | If a command is "fossil ABC" and "ABC" is not a valid command name or prefix but "ABC" is the name of a repository file, then change the command to be "fossil ui ABC". ... (check-in: aad4c248 user: drh tags: trunk) | |
Changes
Changes to src/alerts.c.
︙ | ︙ | |||
2212 2213 2214 2215 2216 2217 2218 | */ db_prepare(&q, "SELECT" " forumpost.fpid," /* 0 */ " (SELECT uuid FROM blob WHERE rid=forumpost.fpid)," /* 1 */ " datetime(event.mtime)," /* 2 */ " substr(comment,instr(comment,':')+2)," /* 3 */ | | > > | 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 | */ db_prepare(&q, "SELECT" " forumpost.fpid," /* 0 */ " (SELECT uuid FROM blob WHERE rid=forumpost.fpid)," /* 1 */ " datetime(event.mtime)," /* 2 */ " substr(comment,instr(comment,':')+2)," /* 3 */ " (SELECT uuid FROM blob, forumpost AS irt" " WHERE irt.fpid=forumpost.firt" " AND blob.rid=coalesce(irt.fprev,irt.fpid))," /* 4 */ " wantalert.needMod," /* 5 */ " coalesce(display_name(info),euser,user)," /* 6 */ " forumpost.fprev IS NULL" /* 7 */ " FROM temp.wantalert, event, forumpost" " LEFT JOIN user ON (login=coalesce(euser,user))" " WHERE event.objid=substr(wantalert.eventId,2)+0" " AND eventId GLOB 'f*'" |
︙ | ︙ |