Add debug logging for content type to assist troubleshooting MIME

conversion issues
This commit is contained in:
Scott Kitterman
2019-09-11 15:31:15 -04:00
parent 39d79ae5a6
commit 708e94f266
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -126,6 +126,11 @@ class dkimMilter(Milter.Base):
@Milter.noreply
def header(self, name, val):
lname = name.lower()
if milterconfig.get('Syslog') and milterconfig.get('debugLevel') >= 4:
if lname == 'content-transfer-encoding':
syslog.syslog("content-transfer-encodeing: {0}".format(val))
if lname == 'content-type':
syslog.syslog("content-type: {0}".format(val))
if lname == 'dkim-signature':
if (milterconfig.get('Syslog') and
milterconfig.get('debugLevel') >= 1):