]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-mail/main.go
Initial
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-mail / main.go
1 /*
2 NNCP -- Node-to-Node CoPy
3 Copyright (C) 2016-2017 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 // Send email via NNCP
20 package main
21
22 import (
23         "bufio"
24         "flag"
25         "fmt"
26         "io/ioutil"
27         "log"
28         "os"
29         "strings"
30
31         "cypherpunks.ru/nncp"
32 )
33
34 func usage() {
35         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
36         fmt.Fprintln(os.Stderr, "nncp-mail -- send email\n")
37         fmt.Fprintln(os.Stderr, "Usage: %s [options] NODE USER ...\nOptions:", os.Args[0])
38         flag.PrintDefaults()
39         fmt.Fprintln(os.Stderr, "Email body is read from stdin.")
40 }
41
42 func main() {
43         var (
44                 cfgPath  = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
45                 niceRaw  = flag.Int("nice", nncp.DefaultNiceMail, "Outbound packet niceness")
46                 debug    = flag.Bool("debug", false, "Enable debugging information")
47                 version  = flag.Bool("version", false, "Print version information")
48                 warranty = flag.Bool("warranty", false, "Print warranty information")
49         )
50         flag.Usage = usage
51         flag.Parse()
52         if *warranty {
53                 fmt.Println(nncp.Warranty)
54                 return
55         }
56         if *version {
57                 fmt.Println(nncp.VersionGet())
58                 return
59         }
60         if flag.NArg() < 2 {
61                 usage()
62                 os.Exit(1)
63         }
64         if *niceRaw < 1 || *niceRaw > 255 {
65                 log.Fatalln("-nice must be between 1 and 255")
66         }
67         nice := uint8(*niceRaw)
68
69         cfgRaw, err := ioutil.ReadFile(*cfgPath)
70         if err != nil {
71                 log.Fatalln("Can not read config:", err)
72         }
73         ctx, err := nncp.CfgParse(cfgRaw)
74         if err != nil {
75                 log.Fatalln("Can not parse config:", err)
76         }
77         ctx.Debug = *debug
78
79         node, err := ctx.FindNode(flag.Arg(0))
80         if err != nil {
81                 log.Fatalln("Invalid NODE specified:", err)
82         }
83
84         body, err := ioutil.ReadAll(bufio.NewReader(os.Stdin))
85         if err != nil {
86                 log.Fatalln("Can not read mail body from stdin:", err)
87         }
88
89         if err = ctx.TxMail(node, nice, strings.Join(flag.Args()[1:], " "), body); err != nil {
90                 log.Fatalln(err)
91         }
92 }