/* NNCP -- Node to Node copy, utilities for store-and-forward data exchange Copyright (C) 2016-2018 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ // Send email via NNCP package main import ( "bufio" "flag" "fmt" "io/ioutil" "log" "os" "strings" "cypherpunks.ru/nncp" ) func usage() { fmt.Fprintf(os.Stderr, nncp.UsageHeader()) fmt.Fprintf(os.Stderr, "nncp-mail -- send email\n\n") fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE USER ...\nOptions:\n", os.Args[0]) flag.PrintDefaults() } func main() { var ( cfgPath = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file") niceRaw = flag.Int("nice", nncp.DefaultNiceMail, "Outbound packet niceness") minSize = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB") viaOverride = flag.String("via", "", "Override Via path to destination node") spoolPath = flag.String("spool", "", "Override path to spool") logPath = flag.String("log", "", "Override path to logfile") quiet = flag.Bool("quiet", false, "Print only errors") debug = flag.Bool("debug", false, "Print debug messages") version = flag.Bool("version", false, "Print version information") warranty = flag.Bool("warranty", false, "Print warranty information") ) flag.Usage = usage flag.Parse() if *warranty { fmt.Println(nncp.Warranty) return } if *version { fmt.Println(nncp.VersionGet()) return } if flag.NArg() < 2 { usage() os.Exit(1) } if *niceRaw < 1 || *niceRaw > 255 { log.Fatalln("-nice must be between 1 and 255") } nice := uint8(*niceRaw) ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, *logPath, *quiet, *debug) if err != nil { log.Fatalln("Error during initialization:", err) } if ctx.Self == nil { log.Fatalln("Config lacks private keys") } node, err := ctx.FindNode(flag.Arg(0)) if err != nil { log.Fatalln("Invalid NODE specified:", err) } if *viaOverride != "" { vias := make([]*nncp.NodeId, 0, strings.Count(*viaOverride, ",")+1) for _, via := range strings.Split(*viaOverride, ",") { foundNodeId, err := ctx.FindNode(via) if err != nil { log.Fatalln("Invalid Via node specified:", err) } vias = append(vias, foundNodeId.Id) } node.Via = vias } body, err := ioutil.ReadAll(bufio.NewReader(os.Stdin)) if err != nil { log.Fatalln("Can not read mail body from stdin:", err) } if err = ctx.TxMail( node, nice, strings.Join(flag.Args()[1:], " "), body, int64(*minSize)*1024, ); err != nil { log.Fatalln(err) } }