Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-25Add In-Reply-To and References headers to notification mailsDennis Schubert
closes #7122
2016-09-04Send notification mails on CSRF failsSteffen van Bergerem
closes #7050
2016-07-12issue-6850 Don't include subjects of private messages in email notificationsSaiVardhan
2016-02-07Add reason for post report to email sent to adminsSteffen van Bergerem
2015-10-07Uncapitalize type if trying to find translation-stringLukas Matt
Signed-off-by: Lukas Matt <lukas@zauberstuhl.de>
2015-09-07add moderators to report email recieversrealtin
and refactor coding style according to pull request comments (#5324)
2015-06-04replace Rails.logger with logging-loggerBenjamin Neff
closes #6041
2015-06-04add logging mixin and replace federation-loggerBenjamin Neff
2015-05-24gracefully handle when a like is already deleted againBenjamin Neff
closes #5983
2015-05-16Fix missing localization of inactive user removal warning emails.Jason Robinson
Fixes #5950
2015-05-07Remove private post content of also commented mailsSteffen van Bergerem
merges #5931
2015-04-03Limited post content excluded from subject of comment emailMarcelo Briones
2015-03-04Exports user photos as zip fileMarcelo Briones
2015-02-27deliver needs to be called on the return value of the mailer callJonne Haß
2015-02-27Use _url, not _path, in mailersJonne Haß
2015-02-27ActionMailer deliver -> deliver_nowJonne Haß
2015-01-20Fix bad email formattingJames Kiesel
2015-01-14Add contacts/posts, and GZipping JSON exporter outputJames Kiesel
2014-10-16Maintenance feature to remove old usersJason Robinson
Add Sidetiq webview to the Sidekiq monitoring panel Add rake task maintenance:queue_users_for_removal This basically just triggers an immediate run of the normal maintenance remove old users functionality that is normally (if enabled) scheduled to run once a day via sidetiq Add extra safety when checking for user removal due to inactivity. Now also user.last_seen will also be checked to make sure a user will not be removed in the event that the Devise rememember me login functionality has stopped the users remove_after timestamp from being removed. Add initializer for maintenance job. Add warning about mail being disabled if remove_old_users maintenance is enabled.
2014-09-20Start converting IDN emailsJonne Haß
2014-09-19fix locale of invitation email subject #5231taro@diasporajp
2014-08-17Allow sending emails with custom subject via Notifier.adminJason Robinson
2014-06-23Reports email notification; wrong recipientLukas Matt
The mailer uses the person_id to find a user which cannot work on a production environment. I haven't used a remote user on my test setup.
2014-05-15Removed local variable in ReportMailerLukas Matt
2014-05-15Using unless instead of 'if !'Lukas Matt
2014-05-15Make report-type translatableLukas Matt
2014-05-15Added the ability to disable report-email-notificationLukas Matt
Podmin can see a extra checkbox in Settings > Account for disabling report-email-notification
2014-05-15Diaspora review part 1Lukas Matt
* join the conditions of the inner ifs * add a uniqueness constraint to the model * differentiate between author is a local or a remote user * simplify controller/mailer functions
2014-05-15It is now possible to report commentsLukas Matt
* Renamed PostReport to Report * Added report button to SPV * Updated rspec refs diaspora/diaspora#4732 refs diaspora/diaspora#4710 refs diaspora/diaspora#4711 refs diaspora/diaspora#4517
2014-03-15Introduce message rendererJonne Haß
This new class replaces all existing server side message rendering helpers and is the new global entry point for such needs. All models with relevant fields now expose an instance of MessageRenderer for those. MessageRenderer acts as gateway between the existing processing solutions for markdown, mentions and tags and provides a very flexible interface for all output needs. This makes the API to obtain a message in a certain format clear. As a result of centralizing the processing a lot of duplication is eliminated. Centralizing the message processing also makes it clear where to change its behaviour, add new representations and what options are already available.
2014-01-15Added post report featureLukas Matt
You can report a single post by clicking the correct icon in the controler section Workflow: * Report a post as offensive * Trigger alerts to every pod-admin * Pod-admin can review it in the admin interface * Delete the post or mark it as reviewed
2013-08-25update brandingJonne Haß
2013-07-03added strip_markdown to notification mailstwain
2012-09-26New configuration systemJonne Haß
* Throw away old system * Add new system * Add new example files * Replace all calls * add the most important docs * Add Specs * rename disable_ssl_requirement to require_ssl * cloudfiles isn't used/called in our code * since community_spotlight.list is only used as enable flag replace it with such one and remove all legacy and irelevant codepaths around it * die if session secret is unset and on heroku * First basic infrastructure for version information
2012-09-23some refactoring regarding the law of demeterJonne Haß
2012-05-18Render invitation email without a layoutSteven Hancock
Ideally, we'll probably want to add a layout for this email at some point, but this simplifies it to the bare minimum and gets rid of the "click here to change your notification settings" link. fixes #3270
2012-05-08small typo in notifier.rbMaxwell Salzberg
2012-05-08Use markerb for emailsSteven Hancock
* Add markerb to the Gemfile * Update mailer classes to send multipart text+html emails * Simplify all email templates and convert to Markdown+ERB This required stripping the CSS and images from the emails. All Markdown templates are based on the original HTML version except for the inviter, where it was much easier to work with the text version (and the i18n contains the whole message anyway).
2012-04-09~FIX: changed the translate pattern inside notifier.rb: correct mail subject ↵matze
will be translated ~Translate: changed the mail contents of the invitation mail: no weird html string below the invitecode url. - M
2012-03-17invite_link functionailty mostly worksMaxwell Salzberg
2012-01-21generate recipient header with Mail::Address to properly handle non-ASCII ↵MrZYX
characters
2011-12-06refactor out profile url generation into local_or_remote_person_path and use ↵Jonne Hass
it everywhere. closes #2471
2011-11-01adding attachments to all recepientsIlya Zhitomirskiy
2011-11-01sending csv as a fileIlya Zhitomirskiy
2011-10-27added a rake task to email retention to adminsIlya Zhitomirskiy
2011-10-10Mail doesn't seem to like the name-addr spec from RFC2822Dan Hansen
2011-10-10Revert "change namespace from Mail to Mailers"Dan Hansen
This reverts commit f859904c767aaf0fc7146824e2fc627227694844.
2011-10-10change namespace from Mail to MailersDan Hansen
locally when Resque tried to constantize Jobs::Mail Object.const_get("Jobs") returned our Jobs module but when it tried to const_get("Mail") it returned the Mail gem. added copyright
2011-10-10RFC2822 specifies that you use parentheses to denote a mailbox list. Use the ↵Dan Hansen
addr-name spec to specify a display name and the from address. Check against the raw headers of the mail as @mail.from excludes the display name Extract shared logic between notifier methods
2011-10-06include people names in the from fieldMaxwell Salzberg