Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gmime 3.0 #52

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
618 changes: 389 additions & 229 deletions Makefile.in

Large diffs are not rendered by default.

1,023 changes: 673 additions & 350 deletions aclocal.m4

Large diffs are not rendered by default.

930 changes: 631 additions & 299 deletions configure

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 1999-2004 IC & S [email protected]
# Copyright (C) 2004-2013 NFG Net Facilities Group [email protected]

AC_INIT([dbmail], [3.2.0], [[email protected]])
AC_INIT([dbmail], [3.2.3], [[email protected]])
AC_CONFIG_AUX_DIR(config)
AM_CONFIG_HEADER(config.h:config.in)
AC_CONFIG_MACRO_DIR([m4])
Expand Down
5 changes: 5 additions & 0 deletions dbmail.conf
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,11 @@ port = 110
# You can set an alternate banner to display when connecting to the service
# banner = DBMAIL pop3 server ready to rock

# If TLS is enabled, login before starttls is normally
# allowed. Use login_disabled=yes to change this
#
# login_disabled = no

#
# If yes, allows SMTP access from the host IP connecting by POP3.
# This requires addition configuration of your MTA
Expand Down
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ binary-arch: build-arch install
$(MAKE) -f debian/rules DH_OPTIONS=-a binary-common

binary-%: build install
make -f debian/rules binary-common $* DH_OPTIONS=-p$*
make -f debian/rules binary-common $* DH_OPTIONS=-p$*

binary: binary-indep binary-arch

Expand Down
3 changes: 2 additions & 1 deletion jenkins/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildout: bin/buildout
bin/buildout

bin/buildout: bin/python2.7
bin/python ./bootstrap.py
bin/pip install zc.buildout

bin/python2.7:
virtualenv --python=python2.7 --clear .
Expand All @@ -27,6 +27,7 @@ run-test:
(cd ../ && CK_FORK=no make check)
sbin/dbmail-users -c testuser1 -w test -p plaintext || true
sbin/dbmail-users -a testuser2 -w test -p plaintext || true
sbin/dbmail-users -a testuser3 -w test -p sha256 || true
sbin/dbmail-users -y -e testuser1 || true
bin/py ../contrib/mailbox2dbmail/mailbox2dbmail -u testuser1 -m ../test-scripts/testbox -t mbox -p sbin/dbmail-deliver
timeout 300 imaptest user=testuser1 pass=test port=10143 test=../test-scripts/imap
Expand Down
Loading