summaryrefslogtreecommitdiffstats
path: root/app/models/mail_handler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/mail_handler.rb')
-rw-r--r--app/models/mail_handler.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb
index fec2675fc..3c9857873 100644
--- a/app/models/mail_handler.rb
+++ b/app/models/mail_handler.rb
@@ -267,6 +267,7 @@ class MailHandler < ActionMailer::Base
def add_attachments(obj)
if email.attachments && email.attachments.any?
email.attachments.each do |attachment|
+ next unless accept_attachment?(attachment)
obj.attachments << Attachment.create(:container => obj,
:file => attachment.decoded,
:filename => attachment.filename,
@@ -276,6 +277,19 @@ class MailHandler < ActionMailer::Base
end
end
+ # Returns false if the +attachment+ of the incoming email should be ignored
+ def accept_attachment?(attachment)
+ @excluded ||= Setting.mail_handler_excluded_filenames.to_s.split(',').map(&:strip).reject(&:blank?)
+ @excluded.each do |pattern|
+ regexp = %r{\A#{Regexp.escape(pattern).gsub("\\*", ".*")}\z}i
+ if attachment.filename.to_s =~ regexp
+ logger.info "MailHandler: ignoring attachment #{attachment.filename} matching #{pattern}"
+ return false
+ end
+ end
+ true
+ end
+
# Adds To and Cc as watchers of the given object if the sender has the
# appropriate permission
def add_watchers(obj)