Summary | Adding "AUTH: PLAIN" in IMP's Received header |
Queue | IMP |
Queue Version | 6.2.4 |
Type | Enhancement |
State | Rejected |
Priority | 1. Low |
Owners | |
Requester | viktor (at) szepe (dot) net |
Created | 12/31/2014 (3838 days ago) |
Due | |
Updated | 01/05/2015 (3833 days ago) |
Assigned | |
Resolved | 01/03/2015 (3835 days ago) |
Milestone | |
Patch | No |
To keep it short:
I'd like to implement DKIM.
zdkimfilter adds the DKIM signiture to messages
containing "AUTH: "
So I need that string in Horde's email also.
Horde is set to use plain SMTP only.
Should I hack it into Horde's source code?
State ⇒ Rejected
needs to be authenticated, so the authentication details will be added
to *that* received header. Which is correct (especially since the
Horde username != the username of the user authorized to relay mail.)
(AUTH: PLAIN viktor@worker.szepe.net, SSL: TLSv1/SSLv3, 128bits, AES128-SHA)
know this information since PHP != HTTP server.
There is no protocol definition for connecting to the Horde framework.
So reporting "AUTH" is simply not semantically correct.
zdkimfilter (only DKIM implementation for Courier-mta) needs an
authenticated user to add DKIM signiture
The user is indeed authenticated, logged in to Horde.
browser is simply the display window for using Horde.
IMP says "with HTTP" even when https:// is used.
server. There is no such thing as HTTPS as a protocol - it is just
HTTP with TLS security.
(authuserbuf = strstr(p2, "AUTH: ")) != NULL
written in C
http://www.tana.it/svn/zdkimfilter/trunk/src/zdkimfilter.c
HTTP is correct, because it's the protocol, not the security layer.
Horde sends email through sendmail or unauthenticated SMTP. In these
cases there is no "AUTH:" line in the Received header.
It would be very nice to have a config option to add the "AUTH:" line
to Horde's Received header.
Thank you!
State ⇒ Feedback
HTTP is correct, because it's the protocol, not the security layer.
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Adding "AUTH: PLAIN" in IMP's Received header
Queue ⇒ IMP
Milestone ⇒
Patch ⇒ No
State ⇒ New
Received: from 178-164-130-123.pool.digikabel.hu
(178-164-130-123.pool.digikabel.hu [178.164.130.123]) by
worker.szepe.net
(Horde Framework) with HTTP; Wed, 31 Dec 2014 17:58:16 +0000
Please consider adding somthing like
(AUTH: PLAIN viktor@worker.szepe.net, SSL: TLSv1/SSLv3, 128bits, AES128-SHA)
Courier-mta adds this when sending throuhg SMTPS.
1.
zdkimfilter (only DKIM implementation for Courier-mta) needs an
authenticated user to add DKIM signiture
2.
The user is indeed authenticated, logged in to Horde.
3.
IMP says "with HTTP" even when https:// is used.
Thank you very much!