]> gitweb.michael.orlitzky.com - dead/halcyon.git/commitdiff
Add a "Date: " header to outgoing messages.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 1 Oct 2010 01:36:34 +0000 (21:36 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 1 Oct 2010 01:36:34 +0000 (21:36 -0400)
src/Main.hs

index f42f2ce57738a4899005d146bf0700b46c88a377..53c3f905e863e9c98537e4b62d5307335b573939 100644 (file)
@@ -4,6 +4,7 @@ where
 import Control.Concurrent (forkIO, threadDelay)
 import Control.Monad (forever, when)
 import System.Exit (ExitCode(..), exitWith)
+import System.Time (getClockTime)
 import System.IO (hPutStrLn, stderr)
 
 import CommandLine
@@ -26,13 +27,14 @@ thread_sleep seconds = do
   threadDelay microseconds
 
 
--- |Given a 'Message' and a 'Status', update that message's body and
--- subject with the information contained in the status. Returns the
--- updated message.
-message_from_status :: Message -> Status -> Message
-message_from_status message status =
+-- |Given a 'Message', 'Status', and date, update that message's body
+-- and subject with the information contained in the status. Adds a
+-- /Date: / header, and returns the updated message.
+message_from_status :: Message -> String -> Status -> Message
+message_from_status message date status =
     message { subject = "Twat: " ++ (screen_name (user status)),
-              body    = (pretty_print status) }
+              body    = (pretty_print status),
+              headers = ((headers message) ++ ["Date: " ++ date])}
 
 
 -- |This is the main recursive loop. It takes a username, a
@@ -64,7 +66,8 @@ recurse username latest_status_id maybe_message = do
              recurse username new_latest_status_id maybe_message
              return ()
           Just message -> do
-             let messages = map (message_from_status message) new_statuses
+             date <- getClockTime
+             let messages = map (message_from_status message (show date)) new_statuses
              sendmail_results <- mapM sendmail messages
              mapM print_sendmail_result sendmail_results
              recurse username new_latest_status_id maybe_message