• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H12-Jan-2011-2,3581,639

scripts/H03-May-2022-2,9031,970

AUTHORSH A D15-Nov-2010430 129

COPYINGH A D27-Jul-200917.6 KiB341281

ChangeLogH A D12-Jan-201122.2 KiB557448

INSTALLH A D10-Jan-20112.9 KiB8755

Makefile.amH A D10-Jan-2011822 3125

Makefile.inH A D10-Jan-201121.2 KiB678590

NEWSH A D12-Jan-20118.1 KiB246161

READMEH A D30-Jul-20091.1 KiB2419

TODOH A D31-Jul-20092.6 KiB5650

acinclude.m4H A D30-Jul-2009544 2218

aclocal.m4H A D10-Jan-201121.5 KiB603537

configureH A D10-Jan-201197.8 KiB3,4012,729

configure.acH A D10-Jan-2011462 2419

dkimproxy.specH A D12-Jan-20111.6 KiB7147

dkimproxy.spec.inH A D12-Jan-20111.6 KiB7149

install-perl-script.plH A D27-Jul-2009692 3523

install-shH A D10-Dec-200913.3 KiB521344

missingH A D10-Dec-200911.2 KiB377281

sample-dkim-init-script.shH A D10-Jan-20113.5 KiB156118

sample-dkim-init-script.sh.inH A D10-Jan-20113.4 KiB156118

smtpprox.ChangeLogH A D27-Jul-2009184 43

smtpprox.READMEH A D27-Jul-2009908 2115

smtpprox.TODOH A D27-Jul-2009156 32

README

1About
2=====
3
4DKIMproxy is an SMTP-proxy that implements the DKIM and DomainKeys
5standards, to sign and verify email messages using digital signatures
6and DNS records. It can be used to add DKIM support to nearly any
7existing SMTP mail server. The included instructions show how to
8integrate it with Postfix.  It comprises two separate proxies, an
9"outbound" proxy for signing outgoing email, and an "inbound" proxy for
10verifying signatures of incoming email. With Postfix, the proxies can
11operate as either Before-Queue or After-Queue content filters.
12
13See the INSTALL file for installation instructions. Or, check the
14website at http://dkimproxy.sourceforge.net/.
15
16DKIMproxy has evolved from my earlier project, Dkfilter. It is based on
17smtpprox and Mail::DomainKeys. My thanks go out to Bennett Todd for
18providing smtpprox and Anthony D. Urso for providing Mail::DomainKeys.
19
20DKIMproxy is free software; you can redistribute it and/or modify it
21under the terms of the GNU General Public License as published by the
22Free Software Foundation; either version 2 of the License, or (at your
23option) any later version.
24

smtpprox.README

1   This code is Copyright (C) 2001 Morgan Stanley Dean Witter, and
2   is distributed according to the terms of the GNU Public License
3   as found at <URL:http://www.fsf.org/copyleft/gpl.html>.
4
5
6   This program is distributed in the hope that it will be useful,
7   but WITHOUT ANY WARRANTY; without even the implied warranty of
8   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9   GNU General Public License for more details.
10
11smtpprox is a trivial transparent SMTP proxy, an SMTP server and
12client combination. It uses its own SMTP server and client modules
13which are designed to expose every step of the protocol dialogue to
14the calling program, which provides for the greatest flexibility in
15hooking in envelope and content controls and scanning.
16
17For efficiency reasons, it pre-forks and serves from a pool of
18servers, Apache-style.
19
20smtpprox was written by Bennett Todd, <bet@rahul.net>.
21