Arthur POULET
45f1efb731
I changed my email provider recently and it seems I'm less free to set the sender field now. So I cannot say this email comes from the real user, I need to set it to the mailing list email, maybe the true email behind the lists. This change allow this. - Add some documentation (I did not updated mailinglistrb since some time so I needed to read my code again to understand what it does. This documentation should help any other user when configuring there own instance. - Ignore more .env files, just in case - Improve SMTP error handler (it does not do a lot of things but ensure we log unknown smtp errors as well) - Add IMAP disconnection error management (it is still under test, I do not know for sure it fixed the issue where IMAP disconnected and not recovered. Also it is a bit clumsy as it does not ensure this at every step using the imap tcp socket. - Add a SENDER config variable to force set sender field to something else than the original sender when distributing emails. - Fix (probably ?) a bug where the port may not be taken into accound and ssl parameter neither. Did not tested it because I'm lazy. - Replace mailinglist address suffix with + rather than . because it's probably a more common way to handle alias. - Add more tasks to the Rakefile
41 lines
738 B
Ruby
41 lines
738 B
Ruby
require "minitest/test_task"
|
|
|
|
Minitest::TestTask.create(:test) do |t|
|
|
t.libs << "test"
|
|
t.libs << "src"
|
|
t.warning = false
|
|
t.test_globs = ["test/**/test_*.rb"]
|
|
end
|
|
|
|
namespace "db" do
|
|
desc "Migrate the database to the lasted schema"
|
|
task "migrate" do
|
|
load "bin/db_migrate"
|
|
end
|
|
|
|
desc "Initialize database with dumby data"
|
|
task "dumb_seed" do
|
|
load "bin/db_seed"
|
|
end
|
|
|
|
desc "Initialize database with local data"
|
|
task "local_seed" do
|
|
load "bin/db_seed.local"
|
|
end
|
|
|
|
desc "Reset all tables, schema, data"
|
|
task "reset" do
|
|
require_relative "lib/app"
|
|
$db.tables.each { $db.drop_table _1 }
|
|
end
|
|
|
|
namespace "reset" do
|
|
task "stuff" do
|
|
end
|
|
end
|
|
end
|
|
|
|
task :default => :test
|
|
|
|
task default: :test
|