Sha256: 9fdf3e3b2d2167aae80b2eb737dd792792fd0d4fd8a65d5a769d3bab42a9edc8
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
# ruml [](https://travis-ci.org/splattael/ruml) [](https://rubygems.org/gems/ruml) Ruby mailing list software ## Installation $ gem install ruml ## Configration (ruml) ### File based <pre> testml/ ├── bounce_to ├── members ├── name └── to </pre> * to - E-mail of the mailing list * name - Name of the mailing list displayed in subject. E.g. \[Fancy ML\] (optional) * member - List of member's addresses * bounce_to - Bounce mails go to this email (optional) ## Configuration (Postfix) ### Postfix #### /etc/postfix/ml-maps <pre> /^testml@example.com$/ ml-testml /^testml-bounce@mail.info$/ testml-bounce@mail.info </pre> #### /etc/postfix/ml-aliases <pre> ml-testml: "|/path/to/bin/ruml /var/spool/ruml/lists/testml" </pre> #### /etc/postfix/main.cf <pre> virtual_alias_maps = regexp:/etc/postfix/ml-maps alias_maps = hash:/etc/postfix/ml-aliases alias_database = hash:/etc/postfix/ml-aliases </pre> ## TODO * Write unit tests! ## Release Follow these steps to release this gem: # Bump version in edit lib/ruml/version.rb edit README.md git commit -m "Release X.Y.Z" rake release
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruml-1.0.0 | README.md |