From f2c6a52837413ee1fa1a237728bb68495da35f19 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Mon, 25 Jan 2021 13:34:56 +0200 Subject: [PATCH] Fixed help screen --- source/commandline.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/commandline.d b/source/commandline.d index 97bb094..4323a01 100644 --- a/source/commandline.d +++ b/source/commandline.d @@ -9,7 +9,7 @@ import std.file; import std.conv : to; import std.socket : Address, parseAddress; -string VERSION = "v0.3.1"; +string VERSION = "v0.3.2"; void showHelp() { @@ -18,7 +18,7 @@ void showHelp() writeln("new -t [address, address, ...] -s [subject] -c [config file path]\t\tSend a new mail"); writeln("view -m [mailPath, maiPath, ...] -c [config file path]\t\t\t\tView a mail message"); writeln("register -u [username] -p [password] -s [address:port]\t\t\t\tRegister on the server"); - writeln("register -u [username] -p [password] -s [address:port]\t\t\t\tRegister on the server"); + writeln("daemon -c [configFile]\t\t\t\t\t\t\t\tRun a mail fetcher that cycles every 5 seconds"); } string mailDaemonSetup(string[] args)