Chris@441
|
1 # Redmine - project management software
|
Chris@441
|
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
|
Chris@0
|
3 #
|
Chris@0
|
4 # This program is free software; you can redistribute it and/or
|
Chris@0
|
5 # modify it under the terms of the GNU General Public License
|
Chris@0
|
6 # as published by the Free Software Foundation; either version 2
|
Chris@0
|
7 # of the License, or (at your option) any later version.
|
Chris@0
|
8 #
|
Chris@0
|
9 # This program is distributed in the hope that it will be useful,
|
Chris@0
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@0
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Chris@0
|
12 # GNU General Public License for more details.
|
Chris@0
|
13 #
|
Chris@0
|
14 # You should have received a copy of the GNU General Public License
|
Chris@0
|
15 # along with this program; if not, write to the Free Software
|
Chris@0
|
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Chris@0
|
17
|
chris@22
|
18 require 'ar_condition'
|
chris@22
|
19
|
Chris@0
|
20 class Mailer < ActionMailer::Base
|
Chris@0
|
21 layout 'mailer'
|
Chris@0
|
22 helper :application
|
Chris@0
|
23 helper :issues
|
Chris@0
|
24 helper :custom_fields
|
Chris@0
|
25
|
Chris@0
|
26 include ActionController::UrlWriter
|
Chris@0
|
27 include Redmine::I18n
|
Chris@0
|
28
|
Chris@0
|
29 def self.default_url_options
|
Chris@0
|
30 h = Setting.host_name
|
Chris@0
|
31 h = h.to_s.gsub(%r{\/.*$}, '') unless Redmine::Utils.relative_url_root.blank?
|
Chris@0
|
32 { :host => h, :protocol => Setting.protocol }
|
Chris@0
|
33 end
|
luis@291
|
34
|
luis@291
|
35
|
luis@291
|
36
|
luis@291
|
37 # Builds a tmail object used to email the specified user that he was added to a project
|
luis@291
|
38 #
|
luis@291
|
39 # Example:
|
luis@291
|
40 # add_to_project(user) => tmail object
|
luis@291
|
41 # Mailer.deliver_add_to_project(user) => sends an email to the registered user
|
luisf@292
|
42 def added_to_project(member, project)
|
luis@291
|
43
|
luis@291
|
44 user = User.find(member.user_id)
|
luis@291
|
45
|
luis@291
|
46 set_language_if_valid user.language
|
luis@291
|
47 recipients user.mail
|
luis@294
|
48 subject l(:mail_subject_added_to_project, Setting.app_title)
|
luis@294
|
49 body :project_url => url_for(:controller => 'projects', :action => 'show', :id => project.id),
|
luisf@292
|
50 :project_name => project.name
|
luisf@292
|
51 render_multipart('added_to_project', body)
|
luis@291
|
52 end
|
luis@291
|
53
|
luis@291
|
54
|
Chris@0
|
55
|
Chris@0
|
56 # Builds a tmail object used to email recipients of the added issue.
|
Chris@0
|
57 #
|
Chris@0
|
58 # Example:
|
Chris@0
|
59 # issue_add(issue) => tmail object
|
Chris@0
|
60 # Mailer.deliver_issue_add(issue) => sends an email to issue recipients
|
Chris@0
|
61 def issue_add(issue)
|
Chris@0
|
62 redmine_headers 'Project' => issue.project.identifier,
|
Chris@0
|
63 'Issue-Id' => issue.id,
|
Chris@0
|
64 'Issue-Author' => issue.author.login
|
Chris@0
|
65 redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to
|
Chris@0
|
66 message_id issue
|
Chris@0
|
67 recipients issue.recipients
|
Chris@0
|
68 cc(issue.watcher_recipients - @recipients)
|
Chris@0
|
69 subject "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}"
|
Chris@0
|
70 body :issue => issue,
|
Chris@0
|
71 :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue)
|
Chris@0
|
72 render_multipart('issue_add', body)
|
Chris@0
|
73 end
|
Chris@0
|
74
|
Chris@0
|
75 # Builds a tmail object used to email recipients of the edited issue.
|
Chris@0
|
76 #
|
Chris@0
|
77 # Example:
|
Chris@0
|
78 # issue_edit(journal) => tmail object
|
Chris@0
|
79 # Mailer.deliver_issue_edit(journal) => sends an email to issue recipients
|
Chris@0
|
80 def issue_edit(journal)
|
Chris@0
|
81 issue = journal.journalized.reload
|
Chris@0
|
82 redmine_headers 'Project' => issue.project.identifier,
|
Chris@0
|
83 'Issue-Id' => issue.id,
|
Chris@0
|
84 'Issue-Author' => issue.author.login
|
Chris@0
|
85 redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to
|
Chris@0
|
86 message_id journal
|
Chris@0
|
87 references issue
|
Chris@0
|
88 @author = journal.user
|
Chris@0
|
89 recipients issue.recipients
|
Chris@0
|
90 # Watchers in cc
|
Chris@0
|
91 cc(issue.watcher_recipients - @recipients)
|
Chris@0
|
92 s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] "
|
Chris@0
|
93 s << "(#{issue.status.name}) " if journal.new_value_for('status_id')
|
Chris@0
|
94 s << issue.subject
|
Chris@0
|
95 subject s
|
Chris@0
|
96 body :issue => issue,
|
Chris@0
|
97 :journal => journal,
|
Chris@0
|
98 :issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue)
|
Chris@0
|
99
|
Chris@0
|
100 render_multipart('issue_edit', body)
|
Chris@0
|
101 end
|
Chris@0
|
102
|
Chris@0
|
103 def reminder(user, issues, days)
|
Chris@0
|
104 set_language_if_valid user.language
|
Chris@0
|
105 recipients user.mail
|
Chris@14
|
106 subject l(:mail_subject_reminder, :count => issues.size, :days => days)
|
Chris@0
|
107 body :issues => issues,
|
Chris@0
|
108 :days => days,
|
Chris@441
|
109 :issues_url => url_for(:controller => 'issues', :action => 'index', :set_filter => 1, :assigned_to_id => user.id, :sort => 'due_date:asc')
|
Chris@0
|
110 render_multipart('reminder', body)
|
Chris@0
|
111 end
|
Chris@0
|
112
|
Chris@0
|
113 # Builds a tmail object used to email users belonging to the added document's project.
|
Chris@0
|
114 #
|
Chris@0
|
115 # Example:
|
Chris@0
|
116 # document_added(document) => tmail object
|
Chris@0
|
117 # Mailer.deliver_document_added(document) => sends an email to the document's project recipients
|
Chris@0
|
118 def document_added(document)
|
Chris@0
|
119 redmine_headers 'Project' => document.project.identifier
|
Chris@0
|
120 recipients document.recipients
|
Chris@0
|
121 subject "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}"
|
Chris@0
|
122 body :document => document,
|
Chris@0
|
123 :document_url => url_for(:controller => 'documents', :action => 'show', :id => document)
|
Chris@0
|
124 render_multipart('document_added', body)
|
Chris@0
|
125 end
|
Chris@0
|
126
|
Chris@0
|
127 # Builds a tmail object used to email recipients of a project when an attachements are added.
|
Chris@0
|
128 #
|
Chris@0
|
129 # Example:
|
Chris@0
|
130 # attachments_added(attachments) => tmail object
|
Chris@0
|
131 # Mailer.deliver_attachments_added(attachments) => sends an email to the project's recipients
|
Chris@0
|
132 def attachments_added(attachments)
|
Chris@0
|
133 container = attachments.first.container
|
Chris@0
|
134 added_to = ''
|
Chris@0
|
135 added_to_url = ''
|
Chris@0
|
136 case container.class.name
|
Chris@0
|
137 when 'Project'
|
Chris@441
|
138 added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container)
|
Chris@0
|
139 added_to = "#{l(:label_project)}: #{container}"
|
Chris@0
|
140 recipients container.project.notified_users.select {|user| user.allowed_to?(:view_files, container.project)}.collect {|u| u.mail}
|
Chris@0
|
141 when 'Version'
|
Chris@441
|
142 added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container.project)
|
Chris@0
|
143 added_to = "#{l(:label_version)}: #{container.name}"
|
Chris@0
|
144 recipients container.project.notified_users.select {|user| user.allowed_to?(:view_files, container.project)}.collect {|u| u.mail}
|
Chris@0
|
145 when 'Document'
|
Chris@0
|
146 added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id)
|
Chris@0
|
147 added_to = "#{l(:label_document)}: #{container.title}"
|
Chris@0
|
148 recipients container.recipients
|
Chris@0
|
149 end
|
Chris@0
|
150 redmine_headers 'Project' => container.project.identifier
|
Chris@0
|
151 subject "[#{container.project.name}] #{l(:label_attachment_new)}"
|
Chris@0
|
152 body :attachments => attachments,
|
Chris@0
|
153 :added_to => added_to,
|
Chris@0
|
154 :added_to_url => added_to_url
|
Chris@0
|
155 render_multipart('attachments_added', body)
|
Chris@0
|
156 end
|
Chris@441
|
157
|
Chris@0
|
158 # Builds a tmail object used to email recipients of a news' project when a news item is added.
|
Chris@0
|
159 #
|
Chris@0
|
160 # Example:
|
Chris@0
|
161 # news_added(news) => tmail object
|
Chris@0
|
162 # Mailer.deliver_news_added(news) => sends an email to the news' project recipients
|
Chris@0
|
163 def news_added(news)
|
Chris@0
|
164 redmine_headers 'Project' => news.project.identifier
|
Chris@0
|
165 message_id news
|
Chris@0
|
166 recipients news.recipients
|
Chris@0
|
167 subject "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
Chris@0
|
168 body :news => news,
|
Chris@0
|
169 :news_url => url_for(:controller => 'news', :action => 'show', :id => news)
|
Chris@0
|
170 render_multipart('news_added', body)
|
Chris@0
|
171 end
|
Chris@0
|
172
|
Chris@441
|
173 # Builds a tmail object used to email recipients of a news' project when a news comment is added.
|
Chris@441
|
174 #
|
Chris@441
|
175 # Example:
|
Chris@441
|
176 # news_comment_added(comment) => tmail object
|
Chris@441
|
177 # Mailer.news_comment_added(comment) => sends an email to the news' project recipients
|
Chris@441
|
178 def news_comment_added(comment)
|
Chris@441
|
179 news = comment.commented
|
Chris@441
|
180 redmine_headers 'Project' => news.project.identifier
|
Chris@441
|
181 message_id comment
|
Chris@441
|
182 recipients news.recipients
|
Chris@441
|
183 cc news.watcher_recipients
|
Chris@441
|
184 subject "Re: [#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
Chris@441
|
185 body :news => news,
|
Chris@441
|
186 :comment => comment,
|
Chris@441
|
187 :news_url => url_for(:controller => 'news', :action => 'show', :id => news)
|
Chris@441
|
188 render_multipart('news_comment_added', body)
|
Chris@441
|
189 end
|
Chris@441
|
190
|
Chris@441
|
191 # Builds a tmail object used to email the recipients of the specified message that was posted.
|
Chris@0
|
192 #
|
Chris@0
|
193 # Example:
|
Chris@0
|
194 # message_posted(message) => tmail object
|
Chris@0
|
195 # Mailer.deliver_message_posted(message) => sends an email to the recipients
|
Chris@0
|
196 def message_posted(message)
|
Chris@0
|
197 redmine_headers 'Project' => message.project.identifier,
|
Chris@0
|
198 'Topic-Id' => (message.parent_id || message.id)
|
Chris@0
|
199 message_id message
|
Chris@0
|
200 references message.parent unless message.parent.nil?
|
Chris@0
|
201 recipients(message.recipients)
|
Chris@0
|
202 cc((message.root.watcher_recipients + message.board.watcher_recipients).uniq - @recipients)
|
Chris@0
|
203 subject "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] #{message.subject}"
|
Chris@0
|
204 body :message => message,
|
Chris@0
|
205 :message_url => url_for(message.event_url)
|
Chris@0
|
206 render_multipart('message_posted', body)
|
Chris@0
|
207 end
|
Chris@441
|
208
|
Chris@441
|
209 # Builds a tmail object used to email the recipients of a project of the specified wiki content was added.
|
Chris@0
|
210 #
|
Chris@0
|
211 # Example:
|
Chris@0
|
212 # wiki_content_added(wiki_content) => tmail object
|
Chris@0
|
213 # Mailer.deliver_wiki_content_added(wiki_content) => sends an email to the project's recipients
|
Chris@0
|
214 def wiki_content_added(wiki_content)
|
Chris@0
|
215 redmine_headers 'Project' => wiki_content.project.identifier,
|
Chris@0
|
216 'Wiki-Page-Id' => wiki_content.page.id
|
Chris@0
|
217 message_id wiki_content
|
Chris@0
|
218 recipients wiki_content.recipients
|
Chris@0
|
219 cc(wiki_content.page.wiki.watcher_recipients - recipients)
|
chris@37
|
220 subject "[#{wiki_content.project.name}] #{l(:mail_subject_wiki_content_added, :id => wiki_content.page.pretty_title)}"
|
Chris@0
|
221 body :wiki_content => wiki_content,
|
chris@37
|
222 :wiki_content_url => url_for(:controller => 'wiki', :action => 'show', :project_id => wiki_content.project, :id => wiki_content.page.title)
|
Chris@0
|
223 render_multipart('wiki_content_added', body)
|
Chris@0
|
224 end
|
Chris@441
|
225
|
Chris@441
|
226 # Builds a tmail object used to email the recipients of a project of the specified wiki content was updated.
|
Chris@0
|
227 #
|
Chris@0
|
228 # Example:
|
Chris@0
|
229 # wiki_content_updated(wiki_content) => tmail object
|
Chris@0
|
230 # Mailer.deliver_wiki_content_updated(wiki_content) => sends an email to the project's recipients
|
Chris@0
|
231 def wiki_content_updated(wiki_content)
|
Chris@0
|
232 redmine_headers 'Project' => wiki_content.project.identifier,
|
Chris@0
|
233 'Wiki-Page-Id' => wiki_content.page.id
|
Chris@0
|
234 message_id wiki_content
|
Chris@0
|
235 recipients wiki_content.recipients
|
Chris@0
|
236 cc(wiki_content.page.wiki.watcher_recipients + wiki_content.page.watcher_recipients - recipients)
|
chris@37
|
237 subject "[#{wiki_content.project.name}] #{l(:mail_subject_wiki_content_updated, :id => wiki_content.page.pretty_title)}"
|
Chris@0
|
238 body :wiki_content => wiki_content,
|
chris@37
|
239 :wiki_content_url => url_for(:controller => 'wiki', :action => 'show', :project_id => wiki_content.project, :id => wiki_content.page.title),
|
chris@37
|
240 :wiki_diff_url => url_for(:controller => 'wiki', :action => 'diff', :project_id => wiki_content.project, :id => wiki_content.page.title, :version => wiki_content.version)
|
Chris@0
|
241 render_multipart('wiki_content_updated', body)
|
Chris@0
|
242 end
|
Chris@0
|
243
|
Chris@0
|
244 # Builds a tmail object used to email the specified user their account information.
|
Chris@0
|
245 #
|
Chris@0
|
246 # Example:
|
Chris@0
|
247 # account_information(user, password) => tmail object
|
Chris@0
|
248 # Mailer.deliver_account_information(user, password) => sends account information to the user
|
Chris@0
|
249 def account_information(user, password)
|
Chris@0
|
250 set_language_if_valid user.language
|
Chris@0
|
251 recipients user.mail
|
Chris@0
|
252 subject l(:mail_subject_register, Setting.app_title)
|
Chris@0
|
253 body :user => user,
|
Chris@0
|
254 :password => password,
|
Chris@0
|
255 :login_url => url_for(:controller => 'account', :action => 'login')
|
Chris@0
|
256 render_multipart('account_information', body)
|
Chris@0
|
257 end
|
Chris@0
|
258
|
Chris@0
|
259 # Builds a tmail object used to email all active administrators of an account activation request.
|
Chris@0
|
260 #
|
Chris@0
|
261 # Example:
|
Chris@0
|
262 # account_activation_request(user) => tmail object
|
Chris@0
|
263 # Mailer.deliver_account_activation_request(user)=> sends an email to all active administrators
|
Chris@0
|
264 def account_activation_request(user)
|
Chris@0
|
265 # Send the email to all active administrators
|
Chris@0
|
266 recipients User.active.find(:all, :conditions => {:admin => true}).collect { |u| u.mail }.compact
|
Chris@0
|
267 subject l(:mail_subject_account_activation_request, Setting.app_title)
|
Chris@0
|
268 body :user => user,
|
Chris@0
|
269 :url => url_for(:controller => 'users', :action => 'index', :status => User::STATUS_REGISTERED, :sort_key => 'created_on', :sort_order => 'desc')
|
Chris@0
|
270 render_multipart('account_activation_request', body)
|
Chris@0
|
271 end
|
Chris@0
|
272
|
Chris@0
|
273 # Builds a tmail object used to email the specified user that their account was activated by an administrator.
|
Chris@0
|
274 #
|
Chris@0
|
275 # Example:
|
Chris@0
|
276 # account_activated(user) => tmail object
|
Chris@0
|
277 # Mailer.deliver_account_activated(user) => sends an email to the registered user
|
Chris@0
|
278 def account_activated(user)
|
Chris@0
|
279 set_language_if_valid user.language
|
Chris@0
|
280 recipients user.mail
|
Chris@0
|
281 subject l(:mail_subject_register, Setting.app_title)
|
Chris@0
|
282 body :user => user,
|
Chris@0
|
283 :login_url => url_for(:controller => 'account', :action => 'login')
|
Chris@0
|
284 render_multipart('account_activated', body)
|
Chris@0
|
285 end
|
Chris@0
|
286
|
Chris@0
|
287 def lost_password(token)
|
Chris@0
|
288 set_language_if_valid(token.user.language)
|
Chris@0
|
289 recipients token.user.mail
|
Chris@0
|
290 subject l(:mail_subject_lost_password, Setting.app_title)
|
Chris@0
|
291 body :token => token,
|
Chris@0
|
292 :url => url_for(:controller => 'account', :action => 'lost_password', :token => token.value)
|
Chris@0
|
293 render_multipart('lost_password', body)
|
Chris@0
|
294 end
|
Chris@0
|
295
|
Chris@0
|
296 def register(token)
|
Chris@0
|
297 set_language_if_valid(token.user.language)
|
Chris@0
|
298 recipients token.user.mail
|
Chris@0
|
299 subject l(:mail_subject_register, Setting.app_title)
|
Chris@0
|
300 body :token => token,
|
Chris@0
|
301 :url => url_for(:controller => 'account', :action => 'activate', :token => token.value)
|
Chris@0
|
302 render_multipart('register', body)
|
Chris@0
|
303 end
|
Chris@0
|
304
|
Chris@0
|
305 def test(user)
|
Chris@0
|
306 set_language_if_valid(user.language)
|
Chris@0
|
307 recipients user.mail
|
Chris@0
|
308 subject 'Redmine test'
|
Chris@0
|
309 body :url => url_for(:controller => 'welcome')
|
Chris@0
|
310 render_multipart('test', body)
|
Chris@0
|
311 end
|
Chris@0
|
312
|
Chris@0
|
313 # Overrides default deliver! method to prevent from sending an email
|
Chris@0
|
314 # with no recipient, cc or bcc
|
Chris@0
|
315 def deliver!(mail = @mail)
|
Chris@0
|
316 set_language_if_valid @initial_language
|
Chris@0
|
317 return false if (recipients.nil? || recipients.empty?) &&
|
Chris@0
|
318 (cc.nil? || cc.empty?) &&
|
Chris@0
|
319 (bcc.nil? || bcc.empty?)
|
Chris@441
|
320
|
Chris@0
|
321 # Set Message-Id and References
|
Chris@0
|
322 if @message_id_object
|
Chris@0
|
323 mail.message_id = self.class.message_id_for(@message_id_object)
|
Chris@0
|
324 end
|
Chris@0
|
325 if @references_objects
|
Chris@0
|
326 mail.references = @references_objects.collect {|o| self.class.message_id_for(o)}
|
Chris@0
|
327 end
|
Chris@441
|
328
|
Chris@0
|
329 # Log errors when raise_delivery_errors is set to false, Rails does not
|
Chris@0
|
330 raise_errors = self.class.raise_delivery_errors
|
Chris@0
|
331 self.class.raise_delivery_errors = true
|
Chris@0
|
332 begin
|
Chris@0
|
333 return super(mail)
|
Chris@0
|
334 rescue Exception => e
|
Chris@0
|
335 if raise_errors
|
Chris@0
|
336 raise e
|
Chris@0
|
337 elsif mylogger
|
Chris@210
|
338 mylogger.error "The following error occured while sending email notification: \"#{e.message}\". Check your configuration in config/configuration.yml."
|
Chris@0
|
339 end
|
Chris@0
|
340 ensure
|
Chris@0
|
341 self.class.raise_delivery_errors = raise_errors
|
Chris@0
|
342 end
|
Chris@0
|
343 end
|
Chris@0
|
344
|
Chris@0
|
345 # Sends reminders to issue assignees
|
Chris@0
|
346 # Available options:
|
Chris@0
|
347 # * :days => how many days in the future to remind about (defaults to 7)
|
Chris@0
|
348 # * :tracker => id of tracker for filtering issues (defaults to all trackers)
|
Chris@0
|
349 # * :project => id or identifier of project to process (defaults to all projects)
|
chris@22
|
350 # * :users => array of user ids who should be reminded
|
Chris@0
|
351 def self.reminders(options={})
|
Chris@0
|
352 days = options[:days] || 7
|
Chris@0
|
353 project = options[:project] ? Project.find(options[:project]) : nil
|
Chris@0
|
354 tracker = options[:tracker] ? Tracker.find(options[:tracker]) : nil
|
chris@22
|
355 user_ids = options[:users]
|
Chris@0
|
356
|
Chris@0
|
357 s = ARCondition.new ["#{IssueStatus.table_name}.is_closed = ? AND #{Issue.table_name}.due_date <= ?", false, days.day.from_now.to_date]
|
Chris@0
|
358 s << "#{Issue.table_name}.assigned_to_id IS NOT NULL"
|
chris@22
|
359 s << ["#{Issue.table_name}.assigned_to_id IN (?)", user_ids] if user_ids.present?
|
Chris@0
|
360 s << "#{Project.table_name}.status = #{Project::STATUS_ACTIVE}"
|
Chris@0
|
361 s << "#{Issue.table_name}.project_id = #{project.id}" if project
|
Chris@0
|
362 s << "#{Issue.table_name}.tracker_id = #{tracker.id}" if tracker
|
Chris@0
|
363
|
Chris@0
|
364 issues_by_assignee = Issue.find(:all, :include => [:status, :assigned_to, :project, :tracker],
|
Chris@0
|
365 :conditions => s.conditions
|
Chris@0
|
366 ).group_by(&:assigned_to)
|
Chris@0
|
367 issues_by_assignee.each do |assignee, issues|
|
Chris@441
|
368 deliver_reminder(assignee, issues, days) if assignee && assignee.active?
|
Chris@0
|
369 end
|
Chris@0
|
370 end
|
Chris@441
|
371
|
Chris@0
|
372 # Activates/desactivates email deliveries during +block+
|
Chris@0
|
373 def self.with_deliveries(enabled = true, &block)
|
Chris@0
|
374 was_enabled = ActionMailer::Base.perform_deliveries
|
Chris@0
|
375 ActionMailer::Base.perform_deliveries = !!enabled
|
Chris@0
|
376 yield
|
Chris@0
|
377 ensure
|
Chris@0
|
378 ActionMailer::Base.perform_deliveries = was_enabled
|
Chris@0
|
379 end
|
Chris@0
|
380
|
Chris@0
|
381 private
|
Chris@0
|
382 def initialize_defaults(method_name)
|
Chris@0
|
383 super
|
Chris@0
|
384 @initial_language = current_language
|
Chris@0
|
385 set_language_if_valid Setting.default_language
|
Chris@0
|
386 from Setting.mail_from
|
Chris@441
|
387
|
Chris@0
|
388 # Common headers
|
Chris@0
|
389 headers 'X-Mailer' => 'Redmine',
|
Chris@0
|
390 'X-Redmine-Host' => Setting.host_name,
|
Chris@0
|
391 'X-Redmine-Site' => Setting.app_title,
|
Chris@0
|
392 'Precedence' => 'bulk',
|
Chris@0
|
393 'Auto-Submitted' => 'auto-generated'
|
Chris@0
|
394 end
|
Chris@0
|
395
|
Chris@0
|
396 # Appends a Redmine header field (name is prepended with 'X-Redmine-')
|
Chris@0
|
397 def redmine_headers(h)
|
Chris@0
|
398 h.each { |k,v| headers["X-Redmine-#{k}"] = v }
|
Chris@0
|
399 end
|
Chris@0
|
400
|
Chris@0
|
401 # Overrides the create_mail method
|
Chris@0
|
402 def create_mail
|
Chris@0
|
403 # Removes the current user from the recipients and cc
|
Chris@0
|
404 # if he doesn't want to receive notifications about what he does
|
Chris@0
|
405 @author ||= User.current
|
Chris@0
|
406 if @author.pref[:no_self_notified]
|
Chris@0
|
407 recipients.delete(@author.mail) if recipients
|
Chris@0
|
408 cc.delete(@author.mail) if cc
|
Chris@0
|
409 end
|
Chris@441
|
410
|
Chris@0
|
411 notified_users = [recipients, cc].flatten.compact.uniq
|
Chris@0
|
412 # Rails would log recipients only, not cc and bcc
|
Chris@0
|
413 mylogger.info "Sending email notification to: #{notified_users.join(', ')}" if mylogger
|
Chris@441
|
414
|
Chris@0
|
415 # Blind carbon copy recipients
|
Chris@0
|
416 if Setting.bcc_recipients?
|
Chris@0
|
417 bcc(notified_users)
|
Chris@0
|
418 recipients []
|
Chris@0
|
419 cc []
|
Chris@0
|
420 end
|
Chris@0
|
421 super
|
Chris@0
|
422 end
|
Chris@0
|
423
|
Chris@0
|
424 # Rails 2.3 has problems rendering implicit multipart messages with
|
Chris@0
|
425 # layouts so this method will wrap an multipart messages with
|
Chris@0
|
426 # explicit parts.
|
Chris@0
|
427 #
|
Chris@0
|
428 # https://rails.lighthouseapp.com/projects/8994/tickets/2338-actionmailer-mailer-views-and-content-type
|
Chris@0
|
429 # https://rails.lighthouseapp.com/projects/8994/tickets/1799-actionmailer-doesnt-set-template_format-when-rendering-layouts
|
Chris@441
|
430
|
Chris@0
|
431 def render_multipart(method_name, body)
|
Chris@0
|
432 if Setting.plain_text_mail?
|
Chris@0
|
433 content_type "text/plain"
|
Chris@0
|
434 body render(:file => "#{method_name}.text.plain.rhtml", :body => body, :layout => 'mailer.text.plain.erb')
|
Chris@0
|
435 else
|
Chris@0
|
436 content_type "multipart/alternative"
|
Chris@0
|
437 part :content_type => "text/plain", :body => render(:file => "#{method_name}.text.plain.rhtml", :body => body, :layout => 'mailer.text.plain.erb')
|
Chris@0
|
438 part :content_type => "text/html", :body => render_message("#{method_name}.text.html.rhtml", body)
|
Chris@0
|
439 end
|
Chris@0
|
440 end
|
Chris@0
|
441
|
Chris@0
|
442 # Makes partial rendering work with Rails 1.2 (retro-compatibility)
|
Chris@0
|
443 def self.controller_path
|
Chris@0
|
444 ''
|
Chris@0
|
445 end unless respond_to?('controller_path')
|
Chris@441
|
446
|
Chris@0
|
447 # Returns a predictable Message-Id for the given object
|
Chris@0
|
448 def self.message_id_for(object)
|
Chris@0
|
449 # id + timestamp should reduce the odds of a collision
|
Chris@0
|
450 # as far as we don't send multiple emails for the same object
|
Chris@441
|
451 timestamp = object.send(object.respond_to?(:created_on) ? :created_on : :updated_on)
|
Chris@0
|
452 hash = "redmine.#{object.class.name.demodulize.underscore}-#{object.id}.#{timestamp.strftime("%Y%m%d%H%M%S")}"
|
Chris@0
|
453 host = Setting.mail_from.to_s.gsub(%r{^.*@}, '')
|
Chris@0
|
454 host = "#{::Socket.gethostname}.redmine" if host.empty?
|
Chris@0
|
455 "<#{hash}@#{host}>"
|
Chris@0
|
456 end
|
Chris@441
|
457
|
Chris@0
|
458 private
|
Chris@441
|
459
|
Chris@0
|
460 def message_id(object)
|
Chris@0
|
461 @message_id_object = object
|
Chris@0
|
462 end
|
Chris@441
|
463
|
Chris@0
|
464 def references(object)
|
Chris@0
|
465 @references_objects ||= []
|
Chris@0
|
466 @references_objects << object
|
Chris@0
|
467 end
|
Chris@441
|
468
|
Chris@0
|
469 def mylogger
|
Chris@0
|
470 RAILS_DEFAULT_LOGGER
|
Chris@0
|
471 end
|
Chris@0
|
472 end
|
Chris@0
|
473
|
Chris@0
|
474 # Patch TMail so that message_id is not overwritten
|
Chris@0
|
475 module TMail
|
Chris@0
|
476 class Mail
|
Chris@0
|
477 def add_message_id( fqdn = nil )
|
Chris@0
|
478 self.message_id ||= ::TMail::new_message_id(fqdn)
|
Chris@0
|
479 end
|
Chris@0
|
480 end
|
Chris@0
|
481 end
|
luis@291
|
482
|
luis@291
|
483
|
luis@291
|
484
|
luis@291
|
485
|