pip3 install dkimpy

Asked by pablo

The download version of dkimpy is different than the following:

http://bazaar.launchpad.net/~dkimpy-hackers/dkimpy/trunk/view/head:/dkim/__init__.py

I'm using python3, and this is an example of a difference:

FROZEN = (b'from',b'date',b'subject')

while in my downloaded code (/usr/local/lib/python3.4/site-packages/dkim/__init__.py):

FROZEN = ('from','date','subject')

Question information

Language:
English Edit question
Status:
Solved
For:
dkimpy Edit question
Assignee:
No assignee Edit question
Solved by:
pablo
Solved:
Last query:
Last reply:
Revision history for this message
pablo (pablomoreno61) said :
#1

That throws an error when I send my message as it says:

dkim.ParameterError: The From header field MUST be signed

Revision history for this message
Scott Kitterman (kitterman) said :
#2

As I read your most recent comment in the bug, you've got it figured out.

Revision history for this message
pablo (pablomoreno61) said :
#3

This issue is related to (written by me too): https://bugs.launchpad.net/dkimpy/+bug/1523067

I've opened to different bugs because I though there were different kind of errors.

how can I install the version documented here? http://bazaar.launchpad.net/~dkimpy-hackers/dkimpy/trunk/view/head:/dkim/__init__.py

Revision history for this message
Scott Kitterman (kitterman) said :
#4

I've just released version 0.5.5 which should resolve this for you.

Revision history for this message
pablo (pablomoreno61) said :
#5

it works like a charm, using 0.5.6 version

Many thanks Scott!