diff --git a/Text/ParserCombinators/Parsec/Rfc2234.hs b/Text/ParserCombinators/Parsec/Rfc2234.hs
--- a/Text/ParserCombinators/Parsec/Rfc2234.hs
+++ b/Text/ParserCombinators/Parsec/Rfc2234.hs
@@ -1,6 +1,6 @@
 {- |
    Module      :  Text.ParserCombinators.Parsec.Rfc2234
-   Copyright   :  (c) 2008 Peter Simons
+   Copyright   :  (c) 2012 Peter Simons
    License     :  BSD3
 
    Maintainer  :  simons@cryp.to
diff --git a/Text/ParserCombinators/Parsec/Rfc2821.hs b/Text/ParserCombinators/Parsec/Rfc2821.hs
--- a/Text/ParserCombinators/Parsec/Rfc2821.hs
+++ b/Text/ParserCombinators/Parsec/Rfc2821.hs
@@ -1,6 +1,6 @@
 {- |
    Module      :  Text.ParserCombinators.Parsec.Rfc2821
-   Copyright   :  (c) 2008 Peter Simons
+   Copyright   :  (c) 2012 Peter Simons
    License     :  BSD3
 
    Maintainer  :  simons@cryp.to
diff --git a/Text/ParserCombinators/Parsec/Rfc2822.hs b/Text/ParserCombinators/Parsec/Rfc2822.hs
--- a/Text/ParserCombinators/Parsec/Rfc2822.hs
+++ b/Text/ParserCombinators/Parsec/Rfc2822.hs
@@ -1,6 +1,6 @@
 {- |
    Module      :  Text.ParserCombinators.Parsec.Rfc2822
-   Copyright   :  (c) 2008 Peter Simons
+   Copyright   :  (c) 2012 Peter Simons
    License     :  BSD3
 
    Maintainer  :  simons@cryp.to
@@ -191,7 +191,7 @@
 -- |Match either 'atom' or 'quoted_string'.
 
 word            :: CharParser a String
-word            = atom <|> quoted_string     <?> "word"
+word            = unfold (atom <|> quoted_string)     <?> "word"
 
 -- |Match either one or more 'word's or an 'obs_phrase'.
 
diff --git a/hsemail.cabal b/hsemail.cabal
--- a/hsemail.cabal
+++ b/hsemail.cabal
@@ -1,6 +1,6 @@
 Name:                   hsemail
-Version:                1.7.1
-Copyright:              (c) 2004-2011 Peter Simons
+Version:                1.7.2
+Copyright:              (c) 2012 Peter Simons
 License:                BSD3
 License-File:           LICENSE
 Author:                 Peter Simons <simons@cryp.to>, Gero Kriependorf <gero-dev@physra.net>, Marty Pauley <marty@kasei.com>
@@ -11,7 +11,7 @@
 Description:            Parsers for the syntax defined in RFC2821 and 2822
 Cabal-Version:          >= 1.6
 Build-Type:             Simple
-Tested-With:            GHC == 7.0.2
+Tested-With:            GHC == 7.0.4, GHC == 7.4.1
 
 Extra-Source-Files:     example/message-test.hs
                         example/message-test.input
