#Pōwst Office
##Introduction Powst office is a simple mail catching solution for *NIX boxes designed to be lightweight and easy to use. We use mostly testing emails on local and development drupal sites.
##Dependencies
- PHP w/ Composer
- MySql
- Webserver (Apache, NGINX, etc.)
##Install
- Clone the repo
/var/www/powst
or wherever you'd like to serve the front end from. - Run
bower install
andcomposer install
to get the dependencies - Edit your php.ini file
sendmail_path
to point topowst
in the root directory of this repo. - Chmod this file with executable permissions (755)
- Create a MySql database with a read/write user and a table called
mail
comprised of the following columns
- id - int (autoincrementing)
- to_email - varchar
- from - varchar
- subject - varchar
- sent - timestamp (default to CURRENT_TIMESTAMP)
- body - mediumtext
- Edit the db config at the top of powst with the hostname, user, password, and database name.
- Point your webserver at the repo
- Restart Apache