]> code.delx.au - offlineimap/commitdiff
Starting work in IMAP parser
authorJohn Goerzen <jgoerzen@complete.org>
Wed, 6 Aug 2008 23:04:59 +0000 (18:04 -0500)
committerJohn Goerzen <jgoerzen@complete.org>
Wed, 6 Aug 2008 23:04:59 +0000 (18:04 -0500)
OfflineIMAP.cabal
src/Network/IMAP/Parser.hs [new file with mode: 0644]

index 710864ae8f7aa4251950ea05985c57763c38ef82..28fd5ebc178e04f3516bc05d450ec291d470328c 100644 (file)
@@ -52,7 +52,8 @@ Library
     HDBC>=1.1.0, mtl, base, hslogger,
     ConfigFile, filepath, directory, process
 
-  Exposed-Modules: Data.Syncable
+  Exposed-Modules: Data.Syncable,
+     Network.IMAP.Parser
 
   If flag(splitBase)
     Build-Depends: base >= 3, directory, random, process, old-time,
diff --git a/src/Network/IMAP/Parser.hs b/src/Network/IMAP/Parser.hs
new file mode 100644 (file)
index 0000000..16522f4
--- /dev/null
@@ -0,0 +1,21 @@
+{- offlineimap component
+Copyright (C) 2008 John Goerzen <jgoerzen@complete.org>
+
+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 2 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, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+-}
+
+module Network.IMAP.Parser where
+
+import 
\ No newline at end of file