niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » Not Unix » Vmsnet » mail - pmdf
domainkeys and SPF
Post new topic   Reply to topic Page 1 of 1 [6 Posts] View previous topic :: View next topic
Author Message
david20@alpha2.mdx.ac.uk
*nix forums Guru Wannabe


Joined: 16 May 2005
Posts: 205

PostPosted: Fri May 12, 2006 2:02 pm    Post subject: Re: domainkeys and SPF Reply with quote

In article <4463B1DA.9010702@sonnection.nl>, "Rolf E. Sonneveld" <R.E.Sonneveld@sonnection.nl> writes:
Quote:
Hello, Hunter

I would like to extend the original question to include DKIM. Although
no official RFC yet (SPF and SenderID having experimental status) DKIM
has quite some potential.


I thought DKIM was Domainkeys (DomainKeys Identified Mail) or is there
some difference ?

David Webb
Security team leader
CCSS
Middlesex University



Quote:
I can't judge on how difficult a complete implementation of these is,
but I'd suggest to file RFE's for it (I do this by sending a BCc to
support at Process) and if others find support of these anti-spam
techniques important for a new version of PMDF, they add their vote to
the respective RFE numbers.

Kind regards,
/rolf

Hunter Goatley wrote:
Checking Domain Keys and SPF is also not difficult, but the hard part is
figuring out how to propagate that information UP into PMDF.

Actually, as I understand it (and I could be wrong, as I haven't read
the specs for it), the even harder part is that the checksum generated
for DomainKey includes the headers and body, and that the order of the
headers is important. Since PMDF modifies and reorders headers, this
could be problematic. It may be that we can do the check before PMDF
does its tinkering, but we haven't gotten that far in looking into it.

But could you guys get us to a this-century version of BIND first? That
would be really helpful, in kind of a major big huge way.

That's under development. We have a version of it running in-house,
but I'm not sure what the timeframe is for the release.

Hunter
------
Hunter Goatley, Process Software, http://www.process.com/
goathunter@GOATLEY.COM> http://www.goatley.com/hunter/
Back to top
Rolf E. Sonneveld
*nix forums beginner


Joined: 17 Jun 2005
Posts: 27

PostPosted: Thu May 11, 2006 9:51 pm    Post subject: Re: domainkeys and SPF Reply with quote

Hello, Hunter

I would like to extend the original question to include DKIM. Although
no official RFC yet (SPF and SenderID having experimental status) DKIM
has quite some potential.

I can't judge on how difficult a complete implementation of these is,
but I'd suggest to file RFE's for it (I do this by sending a BCc to
support at Process) and if others find support of these anti-spam
techniques important for a new version of PMDF, they add their vote to
the respective RFE numbers.

Kind regards,
/rolf

Hunter Goatley wrote:
Quote:
Checking Domain Keys and SPF is also not difficult, but the hard part is
figuring out how to propagate that information UP into PMDF.

Actually, as I understand it (and I could be wrong, as I haven't read
the specs for it), the even harder part is that the checksum generated
for DomainKey includes the headers and body, and that the order of the
headers is important. Since PMDF modifies and reorders headers, this
could be problematic. It may be that we can do the check before PMDF
does its tinkering, but we haven't gotten that far in looking into it.

But could you guys get us to a this-century version of BIND first? That
would be really helpful, in kind of a major big huge way.

That's under development. We have a version of it running in-house,
but I'm not sure what the timeframe is for the release.

Hunter
------
Hunter Goatley, Process Software, http://www.process.com/
goathunter@GOATLEY.COM> http://www.goatley.com/hunter/
Back to top
Hunter Goatley
*nix forums Guru Wannabe


Joined: 13 Jun 2005
Posts: 107

PostPosted: Thu May 11, 2006 3:52 pm    Post subject: Re: domainkeys and SPF Reply with quote

Quote:
Checking Domain Keys and SPF is also not difficult, but the hard part is
figuring out how to propagate that information UP into PMDF.

Actually, as I understand it (and I could be wrong, as I haven't read
the specs for it), the even harder part is that the checksum generated
for DomainKey includes the headers and body, and that the order of the
headers is important. Since PMDF modifies and reorders headers, this
could be problematic. It may be that we can do the check before PMDF
does its tinkering, but we haven't gotten that far in looking into it.

Quote:
But could you guys get us to a this-century version of BIND first? That
would be really helpful, in kind of a major big huge way.

That's under development. We have a version of it running in-house,
but I'm not sure what the timeframe is for the release.

Hunter
------
Hunter Goatley, Process Software, http://www.process.com/
<goathunter@GOATLEY.COM> http://www.goatley.com/hunter/
Back to top
Joel M Snyder
*nix forums beginner


Joined: 31 Oct 2005
Posts: 8

PostPosted: Thu May 11, 2006 2:50 pm    Post subject: Re: domainkeys and SPF Reply with quote

Signing mail with Domain Keys is easy, especially if you already have
PMDF TLS (meaning a good SSL library) in place. If you are having
trouble with that, give me a call. It's not hard.

Checking Domain Keys and SPF is also not difficult, but the hard part is
figuring out how to propagate that information UP into PMDF. That
seems to me to be the hard part---you don't want to simply refuse the
mail; that would make things useless. So you need to get the 'status'
of the DKIM/SPF check bubbled up into PMDF somewhere so that the system
manager can use that intelligently as part of their decision on how to
handle the message. It seems to me that you're going to have to
basically either overload an existing mapping (like one of the
MAIL_ACCESS or ORIG_MAIL_ACCESS) such that a callout is possible at that
stage, or add a new mapping.

Now, SPF is REALLY easy in that sense because if you do SPF classic, you
have an obvious place to do the check (in the mapping). If you do
"Sender ID" style SPF (check header instead of envelope), it's a bit
tougher because now all of a sudden the right place to do it might be in
the rewrite rules. Or a new mapping.

There are probably 3 different actions a manager might want for a
message that fails DKIM/SPF checks: reject the message (for all the
meaning of "reject" which should be at SMTP time, but could be
per-message or based on the sender), tag the message either in the
subject line or by adding a header, or redirecting the message. The
first two fit well within what PMDF supports, and that's what you might
want to focus on.

But could you guys get us to a this-century version of BIND first? That
would be really helpful, in kind of a major big huge way.

jms


Geoff Bryant wrote:
Quote:
We are looking at how much effort these would be to implement.
Domainkey looks to be a significant effort.


info-pmdf@process.com wrote:

Although I'm not convinced how useful these technologies will be I am receiving
questions from some users as to whether PMDF will support Domainkeys and SPF.

What are the current plans in this area ?


David Webb
Security team leader
CCSS
Middlesex University

(Some people not using PMDF but using PMAS in proxy-mode may also need this
functionality in PMAS - however since it is really an anti-forgery rather than
anti-spam solution and not all mail is processed by PMAS it seems to me that it
better to have this supported directly in PMDF).



-------------------------------------------------------------
Geoff Bryant bryant@process.com
TCPware/MultiNet/PMDF/SSH/PreciseMail Engineering
Process Software http://www.process.com/
959 Concord St.
Framingham, MA 01701 USA

--
Joel M Snyder, 1404 East Lind Road, Tucson, AZ, 85719
Phone: +1 520 324 0494 (voice) +1 520 324 0495 (FAX)
jms@Opus1.COM http://www.opus1.com/jms Opus One
Back to top
Geoff Bryant
*nix forums beginner


Joined: 07 Jun 2005
Posts: 31

PostPosted: Thu May 11, 2006 2:37 pm    Post subject: Re: domainkeys and SPF Reply with quote

We are looking at how much effort these would be to implement.
Domainkey looks to be a significant effort.


info-pmdf@process.com wrote:
Quote:


Although I'm not convinced how useful these technologies will be I am receiving
questions from some users as to whether PMDF will support Domainkeys and SPF.

What are the current plans in this area ?


David Webb
Security team leader
CCSS
Middlesex University

(Some people not using PMDF but using PMAS in proxy-mode may also need this
functionality in PMAS - however since it is really an anti-forgery rather than
anti-spam solution and not all mail is processed by PMAS it seems to me that it
better to have this supported directly in PMDF).



-------------------------------------------------------------
Geoff Bryant bryant@process.com
TCPware/MultiNet/PMDF/SSH/PreciseMail Engineering
Process Software http://www.process.com/
959 Concord St.
Framingham, MA 01701 USA
Back to top
david20@alpha2.mdx.ac.uk
*nix forums Guru Wannabe


Joined: 16 May 2005
Posts: 205

PostPosted: Thu May 11, 2006 12:50 pm    Post subject: domainkeys and SPF Reply with quote

Although I'm not convinced how useful these technologies will be I am receiving
questions from some users as to whether PMDF will support Domainkeys and SPF.

What are the current plans in this area ?


David Webb
Security team leader
CCSS
Middlesex University

(Some people not using PMDF but using PMAS in proxy-mode may also need this
functionality in PMAS - however since it is really an anti-forgery rather than
anti-spam solution and not all mail is processed by PMAS it seems to me that it
better to have this supported directly in PMDF).
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 1 [6 Posts] View previous topic :: View next topic
The time now is Wed Jan 07, 2009 7:16 pm | All times are GMT
navigation Forum index » Not Unix » Vmsnet » mail - pmdf
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts Bug#378046: ITP: libmail-dkim-perl -- Create and verify D... Magnus Holmgren devel 0 Wed Jul 12, 2006 9:50 pm
No new posts Hello and request for sponsor (DomainKeys packages) Magnus Holmgren devel 2 Sat Jun 17, 2006 11:20 am
No new posts Hello and request for sponsor (DomainKeys packages) Magnus Holmgren devel 0 Sat Jun 17, 2006 11:20 am
No new posts domainkeys and c=simple always bad according to gmail Erik Exim 0 Wed Jun 14, 2006 11:24 pm
No new posts DomainKeys DK Postfix 4 Mon Jun 05, 2006 11:37 pm

Xbox Mod Chips | Loans | Unblock Myspace | Fish Tank Help | Agencia de viagens
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.5026s ][ Queries: 20 (0.3439s) ][ GZIP on - Debug on ]