# File lib/fastcst/command/mail.rb, line 24
24:         def initialize(argv)
25:             super(argv, [
26:                 ["-i", "--id ID", "Specify a changeset ID to send", :@id],
27:                 ["-r", "--rev ID", "Specify a changeset Revision name to send", :@rev],
28:                 ["-t", "--to ADDR", "The to e-mail address", :@to_addr],
29:                 ["-c", "--connect HOST[:PORT]", "The SMTP server host (port optional)", :@host]
30:             ])
31:             
32:             @repo_dir = Repository::Repository.search
33:             
34:         end