c3a940000e
- allows unsubscription processing of email in format "reply+%{key}+unsubscribe@acme.com" (example) - if config.address includes %{key} and replies are enabled every unsubscriable message will include mailto: link in its List-Unsubscribe header
32 lines
848 B
Ruby
32 lines
848 B
Ruby
require 'gitlab/email/handler/base_handler'
|
|
|
|
module Gitlab
|
|
module Email
|
|
module Handler
|
|
class UnsubscribeHandler < BaseHandler
|
|
def can_handle?
|
|
mail_key =~ /\A\w+#{Regexp.escape(Gitlab::IncomingEmail::UNSUBSCRIBE_SUFFIX)}\z/
|
|
end
|
|
|
|
def execute
|
|
raise SentNotificationNotFoundError unless sent_notification
|
|
return unless sent_notification.unsubscribable?
|
|
|
|
noteable = sent_notification.noteable
|
|
raise NoteableNotFoundError unless noteable
|
|
noteable.unsubscribe(sent_notification.recipient)
|
|
end
|
|
|
|
private
|
|
|
|
def sent_notification
|
|
@sent_notification ||= SentNotification.for(reply_key)
|
|
end
|
|
|
|
def reply_key
|
|
mail_key.sub(Gitlab::IncomingEmail::UNSUBSCRIBE_SUFFIX, '')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|