]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-mail/main.go
Raise copyright years
[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-2018 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                 spoolPath = flag.String("spool", "", "Override path to spool")
47                 logPath   = flag.String("log", "", "Override path to logfile")
48                 quiet     = flag.Bool("quiet", false, "Print only errors")
49                 debug     = flag.Bool("debug", false, "Print debug messages")
50                 version   = flag.Bool("version", false, "Print version information")
51                 warranty  = flag.Bool("warranty", false, "Print warranty information")
52         )
53         flag.Usage = usage
54         flag.Parse()
55         if *warranty {
56                 fmt.Println(nncp.Warranty)
57                 return
58         }
59         if *version {
60                 fmt.Println(nncp.VersionGet())
61                 return
62         }
63         if flag.NArg() < 2 {
64                 usage()
65                 os.Exit(1)
66         }
67         if *niceRaw < 1 || *niceRaw > 255 {
68                 log.Fatalln("-nice must be between 1 and 255")
69         }
70         nice := uint8(*niceRaw)
71
72         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, *logPath, *quiet, *debug)
73         if err != nil {
74                 log.Fatalln("Error during initialization:", err)
75         }
76         if ctx.Self == nil {
77                 log.Fatalln("Config lacks private keys")
78         }
79
80         node, err := ctx.FindNode(flag.Arg(0))
81         if err != nil {
82                 log.Fatalln("Invalid NODE specified:", err)
83         }
84
85         body, err := ioutil.ReadAll(bufio.NewReader(os.Stdin))
86         if err != nil {
87                 log.Fatalln("Can not read mail body from stdin:", err)
88         }
89
90         if err = ctx.TxMail(
91                 node,
92                 nice,
93                 strings.Join(flag.Args()[1:], " "),
94                 body,
95                 int64(*minSize)*1024,
96         ); err != nil {
97                 log.Fatalln(err)
98         }
99 }