2022-12-11 13:53:41 +01:00
wip
2022-12-11 02:06:38 +01:00
2022-12-11 13:53:41 +01:00
2022-12-11 13:53:41 +01:00
2022-12-09 23:03:39 +01:00
wip
2022-12-07 20:19:16 +01:00
2022-12-09 23:03:39 +01:00
wip
2022-12-10 01:31:15 +01:00
wip
2022-12-10 01:31:15 +01:00
wip
2022-12-07 20:19:16 +01:00
wip
2022-12-07 20:19:16 +01:00
wip
2022-12-10 01:31:15 +01:00
wip
2022-12-10 01:31:15 +01:00

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

Description
A imap server implementation. Just a POC for now
Readme 88 KiB
Languages
Ruby 100%