grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
# Pleroma: A lightweight social networking server
 | 
						|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 | 
						|
defmodule Pleroma.Workers.MailerWorker do
 | 
						|
  use Pleroma.Workers.WorkerHelper, queue: "mailer"
 | 
						|
 | 
						|
  @impl Oban.Worker
 | 
						|
  def perform(%Job{args: %{"op" => "email", "encoded_email" => encoded_email, "config" => config}}) do
 | 
						|
    encoded_email
 | 
						|
    |> Base.decode64!()
 | 
						|
    |> :erlang.binary_to_term()
 | 
						|
    |> Pleroma.Emails.Mailer.deliver(config)
 | 
						|
  end
 | 
						|
end
 |