diff options
author | Raúl Benencia <rul@kalgan.cc> | 2013-09-05 19:57:02 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2013-09-05 19:57:02 -0300 |
commit | 3bd3fd2c6eae2f36f69f247403421e8cf8226394 (patch) | |
tree | 0d92cd91d69cf52b9168c403af317643e88c2587 /Lazymail/Config.hs | |
parent | 41b53ca04b6d52457f331930e8fea68416498882 (diff) |
Moved all code to src/
Diffstat (limited to 'Lazymail/Config.hs')
-rw-r--r-- | Lazymail/Config.hs | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/Lazymail/Config.hs b/Lazymail/Config.hs deleted file mode 100644 index 2566bc9..0000000 --- a/Lazymail/Config.hs +++ /dev/null @@ -1,55 +0,0 @@ -{- Lazymail user configuration - - - - Copyright 2013 Raúl Benencia <rul@kalgan.cc> - - - - Licensed under the GNU GPL version 3 or higher - - - -} - -module Lazymail.Config(LazymailConfig(..), defaultConfig, customConfig) where - -import Data.List(sort, stripPrefix) -import System.Posix.Files(getSymbolicLinkStatus, isSymbolicLink) -import UI.NCurses(Color(..)) - -import Lazymail.Keymap -import Lazymail.Types(LazymailConfig(..)) - -defaultConfig = LazymailConfig { - baseColor = (ColorWhite, ColorBlack) - , selectionColor = (ColorBlack, ColorWhite) - , statusBarColor = (ColorBlack, ColorBlue) - , headerColor = (ColorGreen, ColorBlack) - , newEmailColor = (ColorBlue, ColorBlack) - , showStatusBar = True - , initialPath = "" - , filterMaildirsHook = \mds -> return mds - , indexDateFormat = "%m %d" - , headersToShow = ["date", "from", "to", "cc", "bcc", "subject", "reply-to"] - , globalKeymaps = defaultGlobalKeymap - , maildirModeKeymap = defaultMaildirKeymap - , indexModeKeymap = defaultIndexKeymap - , emailModeKeymap = defaultEmailKeymap - , composeModeKeymap = defaultComposeKeymap -} - --- --- | Users should modify customConfig in order to set-up their --- preferences. In a possible future maybe I'll work in a not-so-crappy --- config system. --- ---customConfig = defaultConfig { initialPath = "/home/rul/mail/"} - -customConfig = defaultConfig { initialPath = "/home/rul/mail/" - , filterMaildirsHook = filterSymlinks } - -filterSymlinks :: [FilePath] -> IO [FilePath] -filterSymlinks [] = return [] -filterSymlinks (md:mds) = do - filtered <- do - fs <- getSymbolicLinkStatus md - rest <- filterSymlinks mds - if isSymbolicLink fs - then return rest - else return (md:rest) - return $ sort filtered
\ No newline at end of file |