From d01bf7d0c4a676987ef5a1bca79de81333197cfe Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Fri, 29 Jul 2011 21:48:44 +0000 Subject: [PATCH] scripts/shells/alias.php: - fixed help() output git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1144 a1433add-5e2c-0410-b055-b7f2511e0802 --- scripts/shells/alias.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/shells/alias.php b/scripts/shells/alias.php index cc486e4c..85cb2a84 100644 --- a/scripts/shells/alias.php +++ b/scripts/shells/alias.php @@ -122,11 +122,11 @@ class AddTask extends Shell { */ function help() { $this->hr(); - $this->out("Usage: postfixadmin-cli user add
[] [-g]"); + $this->out("Usage: postfixadmin-cli alias add
"); $this->hr(); $this->out('Commands:'); - $this->out("\n\tadd\n\t\tAdds mailbox in interactive mode."); - $this->out("\n\tadd
[] [-g] \n\t\tAdds mailbox for
with password of if -g with rand pw. in MB."); + $this->out("\n\tadd\n\t\tAdds alias in interactive mode."); + $this->out("\n\tadd
\n\t\tAdds an alias
-> \n\t\t accepts multiple addresses as comma-separated list."); $this->out(""); $this->_stop(); }