jaromail

a commandline tool to easily and privately handle your e-mail
git clone git://parazyd.org/jaromail.git
Log | Files | Refs | Submodules | README

commit 72ef06826ad8423083210bb3a06c0868c541d246
parent a9642240814329cafcb964ca975f5146149594a9
Author: Jaromil <jaromil@dyne.org>
Date:   Wed, 11 Dec 2013 10:56:18 +0100

removed is_online check for most operations

Diffstat:
Msrc/jaro | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/jaro b/src/jaro @@ -585,9 +585,9 @@ main() case "$subcommand" in compose) compose ${PARAM} ;; queue) queue ${PARAM} ;; - fetch) is_online; fetch ${PARAM} ;; - send) is_online; send ${PARAM} ;; - peek) is_online; peek ${PARAM} ;; + fetch) fetch ${PARAM} ;; # was checking is_online + send) send ${PARAM} ;; # was checking is_online + peek) peek ${PARAM} ;; # was checking is_online later) later ${PARAM} ;; @@ -619,7 +619,7 @@ main() passwd) change_password ${PARAM} ;; - cert) is_online; cert ${PARAM} ;; + cert) cert ${PARAM} ;; # was checking is_online ramdisk) ramdisk ${PARAM} ;;