https://github.com/blakewilliams/delivery
Quick and simple app to create email groups that match an email address then forward the email to all email addresses in that group.
https://github.com/blakewilliams/delivery
Last synced: over 1 year ago
JSON representation
Quick and simple app to create email groups that match an email address then forward the email to all email addresses in that group.
- Host: GitHub
- URL: https://github.com/blakewilliams/delivery
- Owner: BlakeWilliams
- Created: 2013-02-16T07:45:41.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-23T01:18:26.000Z (over 13 years ago)
- Last Synced: 2025-03-29T01:41:22.809Z (over 1 year ago)
- Language: Ruby
- Homepage: https://github.com/BlakeWilliams/delivery
- Size: 207 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Delivery
Simple Rails application that let's you create email groups.
## Install
1. Clone delivery.
2. Modify `config/config.yml`
3. run `bundle install`
4. Deploy!
In order for this to work on your server you need to have the maildir options in `config.yml` pointing to your mail servers mail directory.
In postfix, you can set `home_mailbox = mail/` and run `mkdir ~/home` to get mail in `/home/user/mail`.
You may also want to catch all emails from a particular domain to go to your one user, you can set this up by creating `/etc/postfix/virtual` and adding the following option.
`@domain.tld user`
Domain is the domain you want to catch emails for and user is the user whose mail directory you will be watching.