Skip to content

yansorau/libetpan

This branch is up to date with dinhvh/libetpan:master.

Folders and files

NameName
Last commit message
Last commit date
Jan 29, 2021
Jun 28, 2022
Jun 19, 2022
Nov 3, 2018
Jul 19, 2011
Jul 19, 2011
Dec 19, 2022
Dec 2, 2021
Sep 19, 2018
Jun 19, 2022
Sep 19, 2018
Jul 19, 2011
Jul 19, 2011
Jul 19, 2011
Feb 12, 2019
Jul 19, 2011
Feb 12, 2019
Mar 1, 2013
Dec 13, 2019
Jun 19, 2022
Dec 16, 2019
Apr 8, 2020

Repository files navigation

LibEtPan

The purpose of this mail library is to provide a portable, efficient framework for different kinds of mail access: IMAP, SMTP, POP and NNTP.

It provides an API for C language.

Build Status Code Quality: Cpp Total Alerts

Features

  • IMAP
  • SMTP
  • POP
  • NNTP
  • RFC822/MIME message builder
  • RFC822/MIME message parser
  • Maildir
  • mbox
  • MH

Build instructions

Unix

You need to install autoconf, automake and libtool. They can be installed using brew.

$ ./autogen.sh
$ make

You can use flag --with-poll for using poll() instead of select() for checking connection status

How to link with it

$ gcc -c -o sample.o sample.c `pkg-config libetpan --cflags`
$ gcc -o sample sample.o `pkg-config libetpan --libs`

Mac / iOS

  • Download Xcode
  • Open build-mac/libetpan.xcodeproj
  • Choose the correct target "static libetpan" for Mac or "libetpan ios" for iOS.
  • Build

Setup a Mac project

  • Add libetpan.xcodeproj as sub-project
  • Link with libetpan.a

Setup an iOS project

  • Add libetpan.xcodeproj as sub-project
  • Link with libetpan-ios.a
  • Set "Other Linker Flags": -lsasl2

Build on Windows

  • See README and Visual Studio Solution in build-windows folder

More information

See http://etpan.org/libetpan.html for more information and examples.

About

Mail Framework for C Language

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 96.5%
  • Makefile 2.1%
  • Other 1.4%