]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-mail/main.go
d14c3d66c077cb205d76f4f956a117e97005cd68
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-mail / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
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.Fprintf(os.Stderr, "Usage: %s [options] NODE USER ...\nOptions:\n", os.Args[0])
38         flag.PrintDefaults()
39 }
40
41 func main() {
42         var (
43                 cfgPath  = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
44                 niceRaw  = flag.Int("nice", nncp.DefaultNiceMail, "Outbound packet niceness")
45                 minSize  = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
46                 quiet    = flag.Bool("quiet", false, "Print only errors")
47                 debug    = flag.Bool("debug", false, "Print debug messages")
48                 version  = flag.Bool("version", false, "Print version information")
49                 warranty = flag.Bool("warranty", false, "Print warranty information")
50         )
51         flag.Usage = usage
52         flag.Parse()
53         if *warranty {
54                 fmt.Println(nncp.Warranty)
55                 return
56         }
57         if *version {
58                 fmt.Println(nncp.VersionGet())
59                 return
60         }
61         if flag.NArg() < 2 {
62                 usage()
63                 os.Exit(1)
64         }
65         if *niceRaw < 1 || *niceRaw > 255 {
66                 log.Fatalln("-nice must be between 1 and 255")
67         }
68         nice := uint8(*niceRaw)
69
70         cfgRaw, err := ioutil.ReadFile(nncp.CfgPathFromEnv(cfgPath))
71         if err != nil {
72                 log.Fatalln("Can not read config:", err)
73         }
74         ctx, err := nncp.CfgParse(cfgRaw)
75         if err != nil {
76                 log.Fatalln("Can not parse config:", err)
77         }
78         if ctx.Self == nil {
79                 log.Fatalln("Config lacks private keys")
80         }
81         ctx.Quiet = *quiet
82         ctx.Debug = *debug
83
84         node, err := ctx.FindNode(flag.Arg(0))
85         if err != nil {
86                 log.Fatalln("Invalid NODE specified:", err)
87         }
88
89         body, err := ioutil.ReadAll(bufio.NewReader(os.Stdin))
90         if err != nil {
91                 log.Fatalln("Can not read mail body from stdin:", err)
92         }
93
94         if err = ctx.TxMail(node, nice, strings.Join(flag.Args()[1:], " "), body, int64(*minSize)*1024); err != nil {
95                 log.Fatalln(err)
96         }
97 }