aboutsummaryrefslogtreecommitdiff
path: root/models/issue_mail.go
Commit message (Collapse)AuthorAge
* models/issue_mail: don't send email to non-active users (#5788)Alexey Agafonov2019-08-24
| | | Fixes #5782
* models/issue_mail: add assignee to issue related emails (#5628)Andy Hochhaus2019-02-20
| | | Reference #4220
* *: rename "gogits" to "gogs"Unknwon2018-05-27
|
* hook: fix email not sent after push (#4430)Unknwon2017-07-27
| | | | | Turns out mail service was not initialized at all, also mail must be sent in sync in hook mode before program exits.
* Refactoring: rename modules -> pkgUnknwon2017-04-04
| | | | | | | | Reasons to change: 1. Shorter than 'modules' 2. More generally used by other Go projects 3. Corresponds to the naming of '$GOPATH/pkg' directory
* modules: rename markdown -> markupUnknwon2017-03-31
| | | | | | | To further support more markup languages (e.g. Org-mode, AsciiDoc, reStructuredText), the name 'markdown' is inappropriate. This is the first step towards more markup language support.
* issue_mail: fix issue poster not receive email if not watching (#2929)Unknwon2017-03-12
|
* issue_mail: send notifications to participants in comments (#2929)Unknwon2017-03-10
|
* log: start using gopkg.in/clog.v1Unknwon2017-02-09
|
* Move models/mail.go to modules/mail.goUnknwon2017-01-30
| | | | To use interface to replace *models.User in avoiding cycle import.
* Minor fix for PR #3822Unknwon2016-12-21
|
* Fix database write context interleaving bug (#3822)stroucki2016-12-21
| | | | | | | | | | | | | | * UpdateIssueUsersByMentions was calling database write operations while a transaction session was in progress. MailParticipants was failing silently because of the SQLITE_LOCKED error. Make sure failures in MailParticipants enter the log, and pass on the transaction context. issue: let caller pass in database context, and use it issue_comment: obtain database context to pass to UpdateIssueMentions issue_comment: log any error from call to MailParticipants issue_mail: pass on database context to UpdateIssueMentions * issue: forgot debug statement
* #2246 fully support of webhooks for pull requestUnknwon2016-08-14
|
* Refactor User.Id to User.IDUnknwon2016-07-24
|
* #2854 fix no mail notification when issue is closed/reopenedUnknwon2016-07-16