summaryrefslogtreecommitdiff
path: root/app/mailers
Commit message (Collapse)AuthorAgeFilesLines
* change determine conditionsFu Xu2016-10-032-2/+2
|
* override subject method in devise mailerFu Xu2016-10-031-0/+8
|
* wrap subject with method subjectFu Xu2016-10-031-1/+1
|
* add configurable email subject suffixFu Xu2016-10-031-0/+1
|
* Wrap List-Unsubscribe link in angle bracketsfix-unsubscribe-headerSean McGivern2016-09-261-1/+1
|
* Fix "Unsubscribe" link in notification emails that is triggered by anti-virusMaximiliano Perez Coto2016-09-201-0/+6
| | | | | | | | | * Created a force=true param that will continue with the previous behaviour of the unsubscribe method * Created a filter for not-logged users so they see a unsubsribe confirmation page * Added the List-Unsubscribe header on emails so the email client can display it on top
* remove Ability.abilitieshttp://jneen.net/2016-08-301-1/+1
|
* Merge branch 'master' into diff-line-comment-vuejsConnor Shea2016-08-182-0/+10
|\
| * Add notifications for new user mentions in merge requestsNick Thomas2016-08-151-0/+5
| |
| * Send notification emails when users are newly mentioned in issue editsNick Thomas2016-08-121-0/+5
| |
* | Send notification email when all discussions are resolvedDouwe Maan2016-07-281-0/+7
|/
* Allow build email service to be testedissue_13343Felipe Artur2016-07-151-0/+1
|
* Simplify HAML code using unless condition and nestingPaco Guzman2016-07-061-1/+0
| | | Extract diff line data attributes to helper methods
* Diffs will create button/diff form on demand no on server sideJacob Schatz2016-07-061-0/+1
|
* Fallback to group's owners/masters when a project has none18757-fixRémy Coutable2016-06-201-0/+5
| | | | | | | A project in a group can have no explicit owners/masters, in that case we fallbacks to the group's owners/masters. Signed-off-by: Rémy Coutable <remy@rymai.me>
* fixed merge conflicts on UI branchJames Lopez2016-06-164-109/+90
|\
| * UI and copywriting improvements13948-access-request-to-projects-and-groupsRémy Coutable2016-06-142-56/+35
| | | | | | | | | | | | | | | | | | + Move 'Edit Project/Group' out of membership-related partial + Show the access request buttons only to logged-in users + Put the request access buttons out of in a more visible button + Improve the copy in the #remove_member_message helper Signed-off-by: Rémy Coutable <remy@rymai.me>
| * Factorize members mails into a new Emails::Members moduleRémy Coutable2016-06-144-145/+105
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * Add request access for groupsRémy Coutable2016-06-142-63/+63
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * Initial implementation of user access request to projectsDavid Alexander2016-06-141-0/+42
| |
* | adding notifications stuff and more refactoring for exporting projectsJames Lopez2016-06-141-0/+13
|/
* New confirmation email :fire:Robert Speicher2016-05-251-0/+2
|
* Syntax-highlight diffs in push emails17464-backport-email-syntax-highlightingSean McGivern2016-05-172-1/+4
| | | | | Based on: https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/151
* Only generate repository push email onceSean McGivern2016-05-111-3/+2
| | | | | | | | | The repository push email can be very expensive to generate, especially with syntax-highlighted diffs. Instead of generating the email for each recipient, generate one email object and reset the Message-Id and To headers for each recipient. (Cloning would also be expensive in the case of large emails, although probably not as bad as generating from scratch.)
* Support e-mail notifications for comments on project snippetsStan Hu2016-05-021-0/+8
| | | | Closes #2334
* Merge branch 'mr-formatting' into 'master' Robert Speicher2016-04-192-2/+2
|\ | | | | | | | | | | | | use ! rather than # for merge request references Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/15278 See merge request !3740
| * format merge request references properlyBen Bodenmiller2016-04-182-2/+2
| |
* | Improve 'auto fsck' admin emailsJacob Vosmaer2016-04-181-1/+1
|/
* Changes suggested by RobertJacob Vosmaer2016-04-121-2/+0
|
* Rename almost all the thingsJacob Vosmaer2016-04-061-1/+1
|
* Rebase repo check MRJacob Vosmaer2016-04-041-0/+16
|
* Improve and finish the fallback to the In-Reply-To and References header for ↵2364-fallback-to-in-reply-to-headerRémy Coutable2016-03-251-7/+5
| | | | | | | | | | | | | | | | the reply-by-email feature A few things to note: - The IncomingEmail feature is now enabled even without a correctly-formatted sub-address - Message-ID for new thread mail are kept the same so that subsequent notifications to this thread are grouped in the thread by the email service that receives the notification (i.e. In-Reply-To of the answer == Message-ID of the first thread message) - To maximize our chance to be able to retrieve the reply key, we look for it in the In-Reply-To header and the References header - The pattern for the fallback reply message id is "reply-[key]@[gitlab_host]" - Improve docs thanks to Axil
* Fix #2364. Fall back to In-Reply-To header when reply key not availableDavid Padilla2016-03-251-1/+7
|
* Add new notifications for issue move actionGrzegorz Bizon2016-03-171-0/+8
| | | | [ci skip]
* Create a SentNotification record for #relabeled_issue_email / ↵Rémy Coutable2016-03-152-10/+6
| | | | #relabeled_merge_request_email
* Improving the original label-subscribing implementationRémy Coutable2016-03-152-43/+37
| | | | | | | 1. Make the "subscribed" text in Issuable sidebar reflect the labels subscription status 2. Current user mut be logged-in to toggle issue/MR/label subscription
* Original implementation to allow users to subscribe to labelsTimothy Andrew2016-03-152-4/+21
| | | | | | | | | | | | | | | | | | 1. Allow subscribing (the current user) to a label - Refactor the `Subscription` coffeescript class - The main change is that it accepts a container, and conducts all DOM queries within its scope. We need this because the labels page has multiple instances of `Subscription` on the same page. 2. Creating an issue or MR with labels notifies users subscribed to those labels - Label `has_many` subscribers through subscriptions. 3. Adding a label to an issue or MR notifies users subscribed to those labels - This only applies to subscribers of the label that has just been added, not all labels for the issue.
* Ensure "new SSH key" email do not ends up as dead Sidekiq jobsfix/ensure-no-new_ssh_key_email-dead-jobsRémy Coutable2016-03-151-1/+4
| | | | | | | | Related to #2235. This is done by: 1. Delaying the notification sending after the SSH key is commited in DB 2. Gracefully exit the mailer method if the record cannot be found
* Fix broken link in CI build notification emailsGrzegorz Bizon2016-02-121-6/+7
| | | | Closes #13199
* Generate valid Message-ID in email rejection mailerWarren Guy2016-01-301-1/+1
| | | | | Use a Message-ID that is RFC 2111 compliant. This fix is consistent with how the Message-ID is generated in the 'notify' mailer.
* Added X-GitLab-... headers to emails from CI and Email On Push servicesAnton Baklanov2016-01-193-7/+27
| | | | Fixes #2098
* Minor improvements, unsubscribe from email footerZeger-Jan van de Weg2016-01-091-4/+4
|
* Unsubscribe from thread through link in email footerZeger-Jan van de Weg2016-01-094-79/+61
|
* Merge branch 'rs-abuse-reports-refactor' into 'master' Douwe Maan2016-01-051-1/+9
|\ | | | | | | | | | | | | | | Abuse Report refactors - Redirect back to user profile after report - "Tell, Don't Ask" for sending report notifications See merge request !2293
| * Make AbuseReportMailer responsible for knowing if it should deliverRobert Speicher2016-01-041-1/+9
| |
* | Merge pull request GH-9938 from huacnlee/hotfix/note_mail_with_notificationpr-9938Douwe Maan2016-01-041-1/+1
|/ | | | Hotfix note mail with notification
* Fixed Rubocop offensesGabriel Mazetto2015-12-151-1/+1
|
* Merge branch 'ci-services-migrate' into 'master' Kamil Trzciński2015-12-144-63/+16
|\ | | | | | | | | | | | | Ci Services migrate See merge request !1985
| * Migrate CI::Services and CI::WebHooks to Services and WebHooksKamil Trzcinski2015-12-104-63/+16
| |
* | Fix specs by adding forgotten instance variableGrzegorz Bizon2015-12-081-0/+3
| |