반송 및 거부 메일 로그 지우는 방법

바운스되고 거부된 메일 로그만 지우는 방법은 무엇인가요?

rails 콘솔을 통해 다음을 수행할 수 있습니다


EmailLog.where(bounced: true).destroy_all

좋습니다. 하지만 'rejected’로 대체하면 오류가 발생합니다.


ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR:  column email_logs.rejected does not exist

admin -> all site settings -> delete rejected email after days 설정만 변경하면 이 기능을 제어할 수 있을 것 같습니다

아마도 앞으로는 그렇게 작동할 수 있겠지만, 이전에 거절된 항목들은 여전히 남아 있습니다.