]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/cypherpunks.ru/nncp/cmd/nncp-mail/main.go
-minsize option
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-mail / main.go
index ab0d0ad1563db273ed39e9f4e04be2b4106a212b..223aea520e5d848b65d3b305ca6f4cf74cf4bd25 100644 (file)
@@ -36,13 +36,13 @@ func usage() {
        fmt.Fprintln(os.Stderr, "nncp-mail -- send email\n")
        fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE USER ...\nOptions:\n", os.Args[0])
        flag.PrintDefaults()
-       fmt.Fprintln(os.Stderr, "Email body is read from stdin.")
 }
 
 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")
                quiet    = flag.Bool("quiet", false, "Print only errors")
                debug    = flag.Bool("debug", false, "Print debug messages")
                version  = flag.Bool("version", false, "Print version information")
@@ -88,7 +88,7 @@ func main() {
                log.Fatalln("Can not read mail body from stdin:", err)
        }
 
-       if err = ctx.TxMail(node, nice, strings.Join(flag.Args()[1:], " "), body); err != nil {
+       if err = ctx.TxMail(node, nice, strings.Join(flag.Args()[1:], " "), body, int64(*minSize)); err != nil {
                log.Fatalln(err)
        }
 }