A imap server implementation. Just a POC for now
Go to file
Arthur POULET 04f552136b
wip RFC822
2022-12-11 13:53:41 +01:00
db wip 2022-12-11 02:06:38 +01:00
lib wip RFC822 2022-12-11 13:53:41 +01:00
real_test wip RFC822 2022-12-11 13:53:41 +01:00
test Add kindof a search, it's somewhat working 2022-12-10 03:10:28 +01:00
.gitignore init db & models 2022-12-09 23:03:39 +01:00
Gemfile wip 2022-12-10 01:31:15 +01:00
Gemfile.lock wip 2022-12-10 01:31:15 +01:00
README.md wip 2022-12-10 01:31:15 +01:00
Rakefile wip 2022-12-10 01:31:15 +01:00
certificate.pem wip 2022-12-07 20:19:16 +01:00
env.sample init db & models 2022-12-09 23:03:39 +01:00
private_key.pem wip 2022-12-07 20:19:16 +01:00
public_key.pem wip 2022-12-07 20:19:16 +01:00

README.md

createuser -s postgres
sudo -u postgres psql postgres

postgres=#

CREATE USER imaprb;
ALTER USER imaprb SUPERUSER CREATEDB;
\password imaprb

DROP DATABASE IF EXISTS imaprb_debug;
CREATE DATABASE imaprb_debug;
sequel "postgres://postgres@localhost" -c "puts DB.run('DROP DATABASE IF EXISTS imaprb_debug'); puts DB.run('CREATE DATABASE imaprb_debug;')"

rake db:reset ; and rake db:migrate ; and rake db:seed