Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5cb2fbb1a5 | |||
| c74d030c06 | |||
| 08a13fea9e | |||
| 52c7ee02af |
@@ -1,25 +0,0 @@
|
|||||||
Welcome to Cheatsheet.txt, licensed under CC-0. No attribution required.
|
|
||||||
But it is writen by Diskette (diskette@dailitation.xyz)
|
|
||||||
|
|
||||||
Information regarding the [] flags are in dkimpy repository.
|
|
||||||
|
|
||||||
[__init__.py]
|
|
||||||
Initialization file,
|
|
||||||
|
|
||||||
class dkimMilter, a milter for dkim
|
|
||||||
|
|
||||||
What are those
|
|
||||||
self.fp localpart
|
|
||||||
self.fdomain domain part
|
|
||||||
self.iequals i still have no idea
|
|
||||||
|
|
||||||
def header
|
|
||||||
|
|
||||||
|
|
||||||
define check_dkim, I assume that this checks dkim, how?
|
|
||||||
|
|
||||||
def sign_dkim
|
|
||||||
d = dkim.DKIM(txt)
|
|
||||||
|
|
||||||
[dnsplyug.py]
|
|
||||||
File for interfacing with DNS
|
|
||||||
@@ -1,11 +1,3 @@
|
|||||||
An SMTPUTF8-approved version of dkimpy-milter
|
|
||||||
|
|
||||||
Please do note that there might be some mistakes along the way... No warranty is provided!
|
|
||||||
|
|
||||||
This implements support for internationalized email address (RFC 8616)
|
|
||||||
|
|
||||||
Cheatsheet.txt is a file for my (diskette@dailitation.xyz) personal note taking.
|
|
||||||
|
|
||||||
# OVERVIEW
|
# OVERVIEW
|
||||||
|
|
||||||
This is a DKIM signing and verification milter. It has been tested with both
|
This is a DKIM signing and verification milter. It has been tested with both
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ import tempfile
|
|||||||
import io
|
import io
|
||||||
import re
|
import re
|
||||||
import codecs
|
import codecs
|
||||||
import idna
|
|
||||||
from Milter.utils import parse_addr, parseaddr
|
from Milter.utils import parse_addr, parseaddr
|
||||||
import dkimpy_milter.config as config
|
import dkimpy_milter.config as config
|
||||||
from dkimpy_milter.util import drop_privileges
|
from dkimpy_milter.util import drop_privileges
|
||||||
@@ -150,7 +149,7 @@ class dkimMilter(Milter.Base):
|
|||||||
syslog.syslog("{0}: {1}".format(name, val))
|
syslog.syslog("{0}: {1}".format(name, val))
|
||||||
self.has_dkim += 1
|
self.has_dkim += 1
|
||||||
if lname == 'from':
|
if lname == 'from':
|
||||||
fname, self.author = parseaddr(idna.alabel(val))
|
fname, self.author = parseaddr(val)
|
||||||
try:
|
try:
|
||||||
self.fdomain = self.author.split('@')[1].lower()
|
self.fdomain = self.author.split('@')[1].lower()
|
||||||
except IndexError as er:
|
except IndexError as er:
|
||||||
|
|||||||
Reference in New Issue
Block a user