A imap server implementation. Just a POC for now
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Arthur POULET 04f552136b
wip RFC822
6 months ago
db wip 6 months ago
lib wip RFC822 6 months ago
real_test wip RFC822 6 months ago
test Add kindof a search, it's somewhat working 6 months ago
.gitignore init db & models 6 months ago
Gemfile wip 6 months ago
Gemfile.lock wip 6 months ago
README.md wip 6 months ago
Rakefile wip 6 months ago
certificate.pem wip 6 months ago
env.sample init db & models 6 months ago
private_key.pem wip 6 months ago
public_key.pem wip 6 months ago

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