aboutsummaryrefslogtreecommitdiff
path: root/Main.hs
diff options
context:
space:
mode:
authorRaúl Benencia <rul@kalgan.cc>2013-08-20 20:37:34 -0300
committerRaúl Benencia <rul@kalgan.cc>2013-08-20 20:37:34 -0300
commitce68d07f31019bf318a75e0ef9c438f0d25ae846 (patch)
treec57d8f0c92bfa5fe6722d2685e1361205580ef1a /Main.hs
first commit
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs50
1 files changed, 50 insertions, 0 deletions
diff --git a/Main.hs b/Main.hs
new file mode 100644
index 0000000..1c79c07
--- /dev/null
+++ b/Main.hs
@@ -0,0 +1,50 @@
+-- This module is part of Lazymail, a Haskell email client.
+--
+-- Copyright (C) 2013 Raúl Benencia <rul@kalgan.cc>
+--
+-- 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 <http://www.gnu.org/licenses/>.
+
+module Main where
+
+import System.Environment
+import System.Exit
+import System.FilePath(takeDirectory)
+
+import Email
+import Maildir
+import Screen
+import State
+
+parse ["-h"] = usage >> exit
+parse ["-v"] = version >> exit
+parse [md] = do
+ putStrLn $ "Maildirs directory: " ++ md
+ entryPoint $ initState { initPath = md }
+
+parse []= usage >> die
+
+usage = putStrLn . unlines $ usageText where
+ usageText = ["Usage: ./Main [-vh] <maildirs>"
+ ," where <maildirs> is a directory with Maildirs, or a Maildir itself."
+ ," Lazymail will recursively search for Maildirs. "]
+
+version = putStrLn "Haskell lazymail 0.0001"
+exit = exitWith ExitSuccess
+die = exitWith (ExitFailure 1)
+
+main :: IO ()
+main = do
+ args <- getArgs
+ parse args
+ putStrLn "Game over!"
nihil fit ex nihilo