Project

General

Profile

Actions

Bug #2624

open

Sending files by email shows an error to the user although the file is send

Added by liaham 5 months ago. Updated 4 months ago.

Status:
New
Priority:
Normal
Assignee:
-
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Affected Version:
Compatible Redmine Version:
5.1.z

Description

The code in the controller actions renders an error to the user when the zip file which should be send is not found. The error is: File error:

# dmsf_controller.rb

  def entries_email
    if params[:email][:to].strip.blank?
      flash[:error] = l(:error_email_to_must_be_entered)
    else
      DmsfMailer.deliver_send_documents @project, params[:email].permit!, User.current
      if File.exist?(params[:email][:zipped_content])
        File.delete(params[:email][:zipped_content])
      else
        flash[:error] = l(:header_minimum_filesize) # <--- will always be raised
      end
      flash[:notice] = l(:notice_email_sent, params[:email][:to])
    end
    redirect_back_or_default dmsf_folder_path(id: @project, folder_id: @folder)
  end
Actions #1

Updated by liaham 4 months ago

  • Target version changed from 3.2.4 to unreleased
Actions

Also available in: Atom PDF