mirror of https://github.com/MISP/mail_to_misp
16 lines
367 B
Python
16 lines
367 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from pathlib import Path
|
|
|
|
binpath = Path(__file__).parent / 'mail_to_misp.py'
|
|
binpath_forward = Path(__file__).parent / 'mail_to_misp_forward.py'
|
|
|
|
# default ident: <hostname> Python SMTP 1.4.2
|
|
ident = 'ESMTP Postfix (Ubuntu)'
|
|
|
|
email_forward = 'mail2misp@example.com'
|
|
|
|
smtp_addr = '127.0.0.1'
|
|
smtp_port = 2525
|
|
ssl = False
|