11name : HaskellNet-SSL
22synopsis : Helpers to connect to SSL/TLS mail servers with HaskellNet
3- version : 0.3.4.4
3+ version : 0.4.0.0
44description : This package ties together the HaskellNet and connection
55 packages to make it easy to open IMAP and SMTP connections
66 over SSL.
77homepage : https://github.com/dpwright/HaskellNet-SSL
8+ tested-with : GHC == 9.4.8 || == 9.6.5 || == 9.8.2
89license : BSD3
910license-file : LICENSE
1011author : Daniel P. Wright
11- 12+ 1213copyright : (c) 2013 Daniel P. Wright
1314category : Network
1415build-type : Simple
15- cabal-version : >= 1.10
16- data- files : README.md
16+ cabal-version : 1.18
17+ extra-doc- files : README.md, CHANGELOG .md
1718
1819flag network-bsd
1920 description : Get Network.BSD from the network-bsd package
@@ -34,11 +35,22 @@ library
3435 other-modules : Network.HaskellNet.SSL.Internal
3536 build-depends : base >= 4 && < 5 ,
3637 HaskellNet >= 0.3 && < 0.7 ,
37- crypton-connection >= 0.3.1 ,
38+ crypton-connection >= 0.3.1 && < 0.5 ,
3839 bytestring >= 0.9 && < 0.13 ,
3940 data-default >= 0.2 && < 0.8
4041 if flag(network-bsd)
4142 build-depends : network >= 3.0 && < 3.2 ,
4243 network-bsd >= 2.7 && < 2.9
4344 else
4445 build-depends : network >= 2.4 && < 3.0
46+
47+ executable HaskellNet-SSL-example
48+ hs-source-dirs : examples
49+ main-is : gmail.hs
50+ other-modules :
51+ build-depends : base,
52+ HaskellNet-SSL,
53+ HaskellNet,
54+ bytestring
55+
56+ default-language : Haskell2010
0 commit comments