public
Description: Send Github Commit Emails
Homepage:
Clone URL: git://github.com/adamhjk/github-commit-email.git
github-commit-email / README.txt
100644 31 lines (20 sloc) 0.776 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Github Commit Emails
====================
 
This is a Merb "very-flat" application. You need to first do:
 
$ gem install merb-core merb-mailer json
 
In order to get Merb installed. Once that's done, you can fire up your new github commit email
bot with:
 
merb -I github-commit-email.rb
 
Before you start sending things through it, I recommend you pop open the source and edit the
variables at the top. Specifically:
 
  c[:project] = "Example",
  c[:mailto] = "<adam@example.com>",
  c[:mailfrom] = "Commit Bot <noreply@example.com>",
 
  Merb::Mailer.config = {
     :host => 'localhost',
     :port => '25',
     :domain => "commitbot" # the HELO domain provided by the client to the server
  }
 
You'll want to set all of those to reasonable settings.
 
Good luck!
 
Adam